1. 程式人生 > >typeof 資料型別 封裝一個isNaN

typeof 資料型別 封裝一個isNaN

typeof(typeof(undefined)); // string

用法 typeof(str) 或者 typeof str;

typeof 返回的結果為 string 型別

typeof 未定義的變數 不會報錯  返回字串 undefined

  • typeof 的值
  1. 'string'   // typeof  'a'
  2. 'number'  // typeof NaN
  3. 'object'    // typeof null
  4. 'function'  // typeof function a(){}
  5. 'boolean'  //typeof true
  6. 'undefined'  // typeof undefined
  7. 'Symbol'   es6 新增
  • boolean

        六屌絲 轉為Boolean都是false 其他均為true

        0、false、undefined、null、NaN、''

console.log(undefined > 0); // false

console.log(undefined < 0); // false

console.log(undefined == 0); // false


console.log(null > 0); // false

console.log(null < 0); // false

console.log(null == 0); // false


console.log(null == undefined); // true


{} == {}; // false

// NaN 不等於任何東西
  • 封裝一個isNaN()
function myIsNaN(num) {
    var ret = Number(num);
    ret += '';
    if(ret == 'NaN') {
        return true;
    }
    else {
        return false;
    }
}