javascript if string ends with code example

Example 1: 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

Example 2: endswith()

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

Example 3: how to find out what a string ends with in javascript

function isJS(path) {
	return /jsx?$/.test(path)
}

Example 4: how to compare a string with its ending in javascript

function solution(str, ending){
  return str.indexOf(ending, str.length - ending.length) !== -1;
}