Answers for "javascript if string ends with /"

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

JavaScript String endsWith() examples

JavaScript startsWith() Case sensitive Example
const text = 'Hello, Welcome to JavaScript World';
console.log(text.endsWith('World')); // true
console.log(text.endsWith('world')); // false
Posted by: Guest on November-29-2021

Code answers related to "javascript if string ends with /"

Code answers related to "Javascript"

Browse Popular Code Answers by Language