Answers for "javascript if string ends with character"

4

javascript string get last two character

var member = "my name is Mate";

var last2 = member.slice(-2);

alert(last2); // "te"
Posted by: Guest on September-23-2020
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 "javascript if string ends with character"

Code answers related to "Javascript"

Browse Popular Code Answers by Language