check string starts with js code example
Example 1: javascript string starts with
//checks if a string starts with a word
function startsWith(str, word) {
return str.lastIndexOf(word, 0) === 0;
}
startsWith("Welcome to earth.","Welcome"); //true
Example 2: javascript string starts with
const s = 'I am going to become a FULL STACK JS Dev with Coderslang';
console.log(s.startsWith('I am')); // true
console.log(s.startsWith('You are')); // false