Answers for "check if string ends with javascript"

10

javascript endswith

"Hello world".endsWith("world");//true
"Hello world".endsWith("Hello");//false
Posted by: Guest on March-06-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
2

javascript string ends with

const s = 'I am going to become a FULL STACK JS Dev with Coderslang';

console.log(s.endsWith('lang'));             // true
console.log(s.endsWith('LANG'));             // false
Posted by: Guest on February-03-2021
1

endswith()

var str = "Hello world, welcome to the universe.";
var n = str.endsWith("universe.");//returns true
Posted by: Guest on May-03-2020
0

how to compare a string with its ending in javascript

function solution(str, ending){
  return str.indexOf(ending, str.length - ending.length) !== -1;
}
Posted by: Guest on March-23-2020

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language