“JavaScript Endswith” Kod odpowiedzi

JavaScript Endswith

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

JavaScript Sprawdź, czy ciąg kończy się

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

ENDSWITH ()

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

Przykłady JavaScript 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

Jak dowiedzieć się, co kończy się ciąg w JavaScript

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

Jak porównać ciąg z jego zakończeniem w JavaScript

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

Odpowiedzi podobne do “JavaScript Endswith”

Pytania podobne do “JavaScript Endswith”

Więcej pokrewnych odpowiedzi na “JavaScript Endswith” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu