Im做這個JS設置的測試: js-assessment小陣列拼圖。解釋不清楚
一個測試說:
it("you should be able to find all occurrences of an item in an array", function() {
var result = answers.findAllOccurrences('abcdefabc'.split(''), 'a');
expect(result.join(' ')).to.be('0 6');
});
我不明白其中'0 6'
結果是從哪裏來的。 任務是找到a
的事件,但在該陣列中只有兩個a。
這些是原始字符串中「a」字符的**位置**。 – Pointy
哦,沒有看到。非常感謝:) – jviotti