**:
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
var num = 1;
var str = '1';
var test = 1;
test == num //true 相同型別 相同值
test === num //true 相同型別 相同值
test !== num //false test與num型別相同,其值也相同, 非運算肯定是false
num == str //true 把str轉換為數字,檢查其是否相等。
num != str //false == 的 非運算
num === str //false 型別不同,直接返回false
num !== str //true num 與 str型別不同 意味著其兩者不等 非運算自然是true啦
== 和 != 比較若型別不同,先償試轉換型別,再作值比較,最後返回值比較結果 。
而 === 和 !== 只有在相同型別下,才會比較其值。
js中const,var,let區別與用法
js中三種定義變數的方式const,var,let的區別。1.const定義的變數不可以修改,而且必須初始化。const b 2 正確 const b 錯誤,必須初始化 console.log 函式外const定義b b 有輸出值 b 5 console.log 函式外修改const定義b b 無法...
js中const,var,let區別與用法
今天第一次遇到const定義的變數,查閱了相關資料整理了這篇文章。主要內容是 js中三種定義變數的方式const,var,let的區別。1.const定義的變數不可以修改,而且必須初始化。1 const b 2 正確 2 const b 錯誤,必須初始化 3 console.log 函式外const...
js中的 與 用法
1 邏輯或 只有前後都是false的時候才返回false,否則返回true。alert 2 1 2 前面2是true,後面1也是true,結果是2,alert a 1 a 前面 a 是true,後面1也是true 測試結果是 a alert 1 1 前面 是false,後面1是true,而返回結果是...