JS endswith code example
Example 1: javascript endswith
"Hello world".endsWith("world");
"Hello world".endsWith("Hello");
Example 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");
endsWith("hello young man","boy");
Example 3: javascript string ends with
const s = 'I am going to become a FULL STACK JS Dev with Coderslang';
console.log(s.endsWith('lang'));
console.log(s.endsWith('LANG'));
Example 4: how to find out what a string ends with in javascript
function isJS(path) {
return /jsx?$/.test(path)
}