“JavaScript endswith” Respostas de código

JavaScript endswith

"Hello world".endsWith("world");//true
"Hello world".endsWith("Hello");//false
Dennis "Awesome" Rosenbaum

JavaScript verifique se a string termina com

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
Grepper

termina com()

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

Javascript String endswith () exemplos

JavaScript startsWith() Case sensitive Example
const text = 'Hello, Welcome to JavaScript World';
console.log(text.endsWith('World')); // true
console.log(text.endsWith('world')); // false
Gorgeous Gazelle

Como descobrir o que uma string termina com JavaScript

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

Como comparar uma string com seu final em JavaScript

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

Respostas semelhantes a “JavaScript endswith”

Perguntas semelhantes a “JavaScript endswith”

Mais respostas relacionadas para “JavaScript endswith” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código