实现 strStr() 函数。给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。示例 1:输入: haystack = "hello", needle = "ll"输出: 2
<!-- indexOf(value) 根据值查找对应的下标 --><script>var strStr = function (haystack, needle) {//判断查询字符串是否为空if (!needle) {return 0;}//调用indexOf函数返回子串的位置return haystack.indexOf(needle);};console.log(strStr('hello', 'el'));</script>
