Answers for "see if string starts and ends with string js"

5

check if string starts with javascript

var str = "Hello world, welcome to the universe.";
var n = str.startsWith("Hello");//true
Posted by: Guest on June-01-2021
2

javascript check if string ends with

function endsWith(str, suffix) {
    return str.indexOf(suffix, str.length - suffix.length) !== -1;
}

endsWith("hello young man","man");//true
endsWith("hello young man","boy");//false
Posted by: Guest on July-24-2019

Code answers related to "see if string starts and ends with string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language