get string startswith javascript code example
Example 1: js startswith
var str = "Hello world, welcome to the universe.";
var n = str.startsWith("Hello");
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