題目連結
解法
function findNeedle(haystack) {
return "found the needle at position " + haystack.indexOf("needle");
}
筆記
如何快速找到陣列中的索引? indexOf()
直接返回字串
function findNeedle(haystack) {
return "found the needle at position " + haystack.indexOf("needle");
}
如何快速找到陣列中的索引? indexOf()
直接返回字串