Answers for "check if string ends with string js"

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
0

how to find out what a string ends with in javascript

function isJS(path) {
	return /jsx?$/.test(path)
}
Posted by: Guest on April-09-2020

Code answers related to "check if string ends with string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language