var testVar = [null, true, true, false, false];
//Paulpro's solution (not mine)
switch (testVar.indexOf(true)) {
case 1:
console.log('Im in the first group!');
break;
case 2:
console.log('Im in the second group!');
break;
case 3:
console.log('Im in the third group!');
break;
}
testVarは、最初のグループ(インデックス1が真)の従業員に対してこの[null、true、true、false、false、false]のような配列であり、第3のグループではない。配列のインデックス用のスイッチケース
switch(employee.groups [1])case true: – yBrodsky
ありがとうございます!私もemployee.groups [2] employee.groups [3]などが必要です。 –
データ例を表示してください。 –