Conditional & loop
じょうけんステートメント
if-else文
if(condition){
// condition === true exe
} else {
// condition === false exe
}
if(condition){
// condition === true exe
} else {
// condition === false exe
}
boolean
タイプ繰り返し文
ドア
while (true) { console.log("Hi"); }
while (condition) { code ; }
while (true) { console.log("Hi"); }
i
変数に対して繰り返し回数変数の役割を果たす.Boolean論理データ型
true - defined
const a = true;
// true
const a = true;
// true
false - defined
const a = false;
// false
null - defined
const a = null;
// null
undefined
let a;
// undefined
未定義値Reference
この問題について(Conditional & loop), 我々は、より多くの情報をここで見つけました https://velog.io/@iseon_u/JavaScript-Conditional-loopテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol