endsWith()

Обновлено: 09.03.2023

Приклади

Перевірте, чи закінчується рядок на "світ":

let text = "Hello world";
let result = text.endsWith("world");
let text = "Hello World";
let result = text.endsWith("world");

Визначення та використання

Метод endsWith()повертає true , якщо рядок закінчується вказаним рядком.

Інакше воно повертається false.

Метод endsWith()чутливий до регістру.

Дивіться також startswith() метод.

Синтаксис

string.endsWith(searchvalue, length)

Параметри


Parameter Description
searchvalue Required.The string to search for.
length Optional.The length of the string to search.Default value is the length of the string.

Повернене значення


Тип опис
Логічне значення true якщо рядок закінчується значенням, інакше false.

Підтримка браузера


endsWith

Посмотреть совместимость на Can I use?

endsWith