wiki/content/20201112095525-javascript_string_startswith_method.md

411 B

date id title
20201112 8a5acfc2-e49c-4f3a-8823-00d7b57e8569 JavaScript String startsWith Method

Syntax

console.log('hello'.startsWith('hell')) // true
console.log('hello'.startsWith('ell', 1)) // true

See also