Skip to content

Instantly share code, notes, and snippets.

Avatar

Danny Andrews danny-andrews

View GitHub Profile
View array-cheat-sheet.md

Cheat sheet: JavaScript Array methods

Finding Array elements:

['■', '●', '■'].includes('■')            true
['■', '●', '■'].indexOf('■')             0
['■', '●', '■'].lastIndexOf('■')         2
['■', '●', '■'].find(x => x==='■')       ''
['■', '●', '■'].findIndex(x => x==='■')  0