wiki/content/20201112095428-javascript_string_endswith_method.md

469 B

date id title
2020-11-12 00b0d7a6-4222-47e3-a0c9-58f071fa404e JavaScript String endsWith Method

Introduction

Introduced in ES6

Syntax

console.log('hello'.endsWith('ello')) // true
console.log('hello'.endsWith('ello', 5)) // true

See also