profileRyan KesPGP keyI build stuffEmailGithubTwitterLast.fmMastodonMatrix

JavaScript String includes Method

Syntax

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

Related