profileRyan KesPGP keyI build stuffEmailGithubTwitterLast.fmMastodonMatrix

JavaScript String startsWith Method

Syntax

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

See also