check if string starts with javascript code example

Example 1: js startswith

var str = "Hello world, welcome to the universe.";
var n = str.startsWith("Hello");

Example 2: javascript word start with

const str = "Saturday night plans";
const res = str.startsWith("Sat");
console.log(res); //> true

Example 3: 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 4: check if string starts with javascript

var str = "Hello world, welcome to the universe.";
var n = str.startsWith("Hello");//true

Tags:

Misc Example