Beste Lösung:
function startsWith(str, word) {
return str.lastIndexOf(word, 0) === 0;
}
Und hier ist endsWith wenn Sie das auch brauchen:
function endsWith(str, word) {
return str.indexOf(word, str.length - word.length) !== -1;
}
Für diejenigen, die es vorziehen, den Prototyp in String:
String.prototype.startsWith || (String.prototype.startsWith = function(word) {
return this.lastIndexOf(word, 0) === 0;
});
String.prototype.endsWith || (String.prototype.endsWith = function(word) {
return this.indexOf(word, this.length - word.length) !== -1;
});
Uso:
"abc".startsWith("ab")
true
"c".ensdWith("c")
true
Mit Methode:
startsWith("aaa", "a")
true
startsWith("aaa", "ab")
false
startsWith("abc", "abc")
true
startsWith("abc", "c")
false
startsWith("abc", "a")
true
startsWith("abc", "ba")
false
startsWith("abc", "ab")
true