javascript 資料型別檢測

__XiaoSong__發表於2020-10-25

資料型別檢測

  • 基本資料型別一般用typeof

    typeof 'hello';		// string
    typeof('hello');	// string
    
  • 引用資料型別一般用instanceof

    let o = {};
    o instanceof Object;	// true
    
    let arr = [];
    arr instanceof Array;	// true
    
  • 使用Object.prototype.toString.call()判斷資料型別

    // 基本資料型別
    Object.prototype.toString.call(null);		// [object Null]
    Object.prototype.toString.call(undefined);	// [object Undefined]
    Object.prototype.toString.call(1);			// [object Number]
    Object.prototype.toString.call(false);		// [object Boolean]
    Object.prototype.toString.call('string');	// [object String]
    Object.prototype.toString.call(Symbol('symbol'));	// [object Symbol]
    
    // 內部引用資料型別
    Object.prototype.toString.call([1,2,3]);	// [object Array]
    Object.prototype.toString.call(() => {});	// [object Function]
    Object.prototype.toString.call(new Date());	// [object Date]
    Object.prototype.toString.call(new RegExp());	// [object RegExp]
    
    // 自定義引用資料型別
    function Persion(_name='name', _age=18){
    	this.name = _name;
    	this.age = _age;
    }
    Object.prototype.toString.call(new Persion('girl'));	// [object Object]
    

相關文章