次の名前の関数がありますuncompletedSteps()
。
function uncompletedSteps(completedSteps) {
// completedSteps is an array
}
この関数は、 と等しくないcompletedSteps
すべての要素のインデックスを調べて返す必要があります。completedSteps
true
if (completedSteps[i] === true) {
// add to return list
}
つまり、次の場合:
var completedSteps = [
true,
null,
true
];
その後、uncompletedSteps()
を返す必要があり[0, 2]
ます。
これはどのように見えるべきuncompletedSteps()
ですか?(ECMAScript5 は問題ありません。)