Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for [old] Second Index by jaime264
"use strict";
let secondIndex = (text,symbol ) => {
let final = text.indexOf(symbol, text.indexOf(symbol)+1)
return final === -1 ? null : final
}
secondIndex("simss", "s")
Sept. 10, 2019