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
原文地址:http://www.cnblogs.com/zodiacblog/p/3985723.html