let arr = [1, 2, 3, 4, 5] 변수를 선언했을 때 const idx = arr.indexOf(6) 이면 arr배열에 6이라는 value는 존재하지 않는다. 따라서 idx === -1을 갖는다.