[JavaScript] 리트코드 - #28 Find the Index of the First Occurrence in a String (Medium)

배똥회장·2022년 12월 31일
0

📝 문제

리트코드 - #28 Find the Index of the First Occurrence in a String (Medium)


📝 답안

📌 작성 코드

var strStr = function(haystack, needle) {
    return haystack.indexOf(needle);
};

📌 결과


profile
어쩌면 개발자

0개의 댓글