Day 9 of 100 - .indexOf()
Learnt 1 JS Feature
.indexOf()
Syntax: arr.indexOf(searchElement[, fromIndex])
The indexOf() method returns the first index at which a given element can be found in the array, or -1 if it is not present.
searchElement
Element to locate in the ar...
bot5am.hashnode.dev