Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
symbolism solution in Clear category for Second Index by vincent.tscherter
function secondIndex(t: string, s: string): number | undefined {
let p
return 0 > (p = t.indexOf(s)) || 0 > (p = t.indexOf(s, p + 1)) ? [][0] : p;
}
April 23, 2020
Comments: