码迷,mamicode.com
首页 > 其他好文 > 详细

instanceof与typeof

时间:2015-06-02 09:15:20      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:

都会返回类型信息,但installedof与内存中的比较typeof与字符串比较

//objects
  var Person = function() {}

  var gary = new Person();

  console.log(typeof(gary)); // "object"
  gary instanceof Person // true

  //literals
  var str = ‘hello world‘;
  console.log(typeof(str)); // "string"
  str instanceof String // False

  var str1 = new String(‘hello world‘);
  console.log(typeof(str1)) // "object"
  str1 instanceof String // true 

  

instanceof与typeof

标签:

原文地址:http://www.cnblogs.com/xiaqi/p/4545417.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!