javascript string startswith 1st character 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