1、Js中各类型的常量表示形式:Number:number String:string Object:objec
2、typeof运算符在Js中的使用:用于判断某一对象是何种类型,返回值是字符串(各类型的常量的字符串形式)
var message = "some string";
alert((typeof message) == String)
{ alert("OK"); } ——结果:false、okalert(typeof message == "string"); —true
3、typeof 不能精确的表示类的类型(例如下面这个例子:方法Student在这里首字母大写,表明声明了一个类,而使用typeof运算符时却打印出object)
function Student(n, a)
{ this.name = n; this.age = a; } var stuA = new Student('张三', 23); alert(typeof stuA)//object alert(stuA.name + ":" + stuA.age); //张三:234、
5、 对象的动态属性(无中生有),要求一定先声明一个对象然后再有该对象的动态相属性
6、理解Js中函数的作用域(importent)