Javascript String strStartsWith(str, prefix)
function strStartsWith(str, prefix) { return str.indexOf(prefix) === 0; }