if startswith js code example
Example 1: js startswith
var str = "Hello world, welcome to the universe.";
var n = str.startsWith("Hello");
Example 2: check if string starts with javascript
var str = "Hello world, welcome to the universe.";
var n = str.startsWith("Hello");//true