Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
simple no fuss solution in Clear category for [old] Second Index by imtiaz.rahi
function secondIndex(text, symbol) {
var p1 = text.indexOf(symbol, text.indexOf(symbol) + 1);
return (p1 < 0) ? undefined : p1;
}
Sept. 17, 2019