JS 자바스크립트 문자 첫번째 위치 반환 findIndex, indexOf, search
Q. 문자와 문자열이 주어졌을때, getFind 함수는 주어진 문자열에서 주어진 문자가 나타나는 첫번째 위치를 반환합니다. 없으면 -1 반환 function getFind(filter, sentence) { const setArr = [...sentence]; console.log(result); // ['I', ' ', 'a', 'm',' ', 'a', ' ', 'h', 'a', 'c', 'k', 'e', 'r'] const findIndex = setArr.findIndex(el => el === filter); return findIndex; } const output = getFind('a', 'I am a dudud') console.log(output) // --> 2 처음에는 인자를 배열로 ..
Coding/JS
2021. 11. 13. 16:17