Visszatér az Array példány első azon elemének indexével, amelynek értéke megegyezik a metódus argumentumába írt paraméter értékével.
indexOf(searchElement) indexOf(searchElement, fromIndex)
const beasts = ['ant', 'bison', 'camel', 'duck', 'bison'] console.log(beasts.indexOf('bison')) // Expected output: 1 console.log(beasts.indexOf('giraffe')) // Expected output: -1 // Start from index 2 console.log(beasts.indexOf('bison', 2)) // Expected output: 4