“JavaScript Endswith” Réponses codées

JavaScript Endswith

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

JavaScript Vérifiez si la chaîne se termine avec

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

se termine par()

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

Exemples JavaScript String Endswith ()

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

Comment savoir avec quoi une chaîne se termine en javascript

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

Comment comparer une chaîne avec sa fin dans JavaScript

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

Réponses similaires à “JavaScript Endswith”

Questions similaires à “JavaScript Endswith”

Plus de réponses similaires à “JavaScript Endswith” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code