react
1const n = Math.floor(Math.random() * 10); // 0 〜 9 の整数を生成 2const threshold = 5; 3return ( 4<div> 5{n > threshold && <p>`n` is larger than {threshold}</p>} 6<p>`n` is {n % 2 === 0 ? 'even' : 'odd'}</p> 7</div> 8);
この&&
論理演算子の部分なのですが、n > threshold
と
<p>
n is larger than {threshold}</p>
はどちらも同じことを表現してるように見えます。
なぜ同じ条件を二度記述し&&
を使っているのでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/10/31 04:15