true
、false
,內容為判斷式也可以,如 2<3
顯示 true
if
內的比較let a = true;
let b = 2>3;
console.log(b); // false
typeof
為 object
parseInt()
.toString()
let a = 1;
let b = "1";
a = a.toString();
b = paresInt(b);
typeof a // string
typeof b // number
結合這幾天的內容,可以嘗試了解下面的結果,看 a
和 b
如何變化
let a = "1";
let b = 1;
b++;
b += a;
a = a + 10;
a = parseInt(a);
console.log(a); // 110
console.log(b); // '21'
typeof a; // number
typeof b; // string
預計說明比較與邏輯判斷運算子