profileRyan KesPGP keyI build stuffEmailGithubTwitterLast.fmMastodonMatrix

Array.prototype.find()

Syntax

console.log([6, -6, 8].find((x) => x < 0)) // -6

Related