Answers for "javascirpt string starts with+"

8

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
Posted by: Guest on July-23-2019
1

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
Posted by: Guest on February-03-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language