check string ends with code example

Example 1: check if string ends with .

var str = "Hello world, welcome to the universe.";
var n = str.endsWith("universe.");

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");//true
endsWith("hello young man","boy");//false

Example 3: endswith()

var str = "Hello world, welcome to the universe.";
var n = str.endsWith("universe.");//returns true

Tags:

Misc Example