javascriptでif文を用いて条件判定を行いたいのですがいつもfalseの方になってしまいます...
何が原因かわからないのでわかる方がいらっしゃったら教えてください!
javascript
1 let label = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, ""]; 2 let defaultLabel = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, ""]; 3 const len = label.length; 4 5 function endCheck(label, defaultLabel) { 6 for (i = 0; i < len; i++) { 7 const nowLabel = label[i]; 8 const defLabel = defaultLabel[i]; 9 console.log(nowLabel); 10 console.log(defLabel); 11 if (nowLabel === defaultLabel) { 12 console.log("t"); 13 } else { 14 // 15 console.log("f"); 16 } 17 } 18 } 19 20 endCheck(label, defaultLabel);
回答4件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。