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

数据类型

时间:2014-09-22 15:22:32      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:io   数据   sp   cti   on   c   ef   r   bs   

1)如果判断函数?function 和object的联系是什么?

  通过typeof 来判断,function和object都是引用类型,函数的基本数据类型,object是对象类型,function是object的子类

  2)typeof 和instanceof 的区别是什么和作用是什么?

    typeof 用来判断基本数据类型,instanceof 来判断对象类型, 但function 有点特殊 alert(typeof function(){}) //"function"  alert(function(){} instanceof Object)  //true

  3)undefined 和null 有什么区别?

    一个是值类型,一个是引用类型

  4)js 有哪几种基本的数据类型?

    6种:undefined,boolean,string,number,object,function

  5)Undefined,undefined,’undefined’分别是什么?

    Undefined 是类型,undefined 是值,’undefined‘是类型的名称

  6)typeof null  ,null instanceof Object 的值是什么

    ’object‘  ,false

数据类型

标签:io   数据   sp   cti   on   c   ef   r   bs   

原文地址:http://www.cnblogs.com/zodiacblog/p/3985723.html

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