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