论坛首页 Web前端技术论坛

javascript 高级程序设计 读书笔记(一)

浏览 1513 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2009-02-04   最后修改:2009-02-15
最近刚刚开始看javascript高级程序设计

怕以后忘记所以做一下读书笔记整理一下重要的知识点:

1:instance of 和 type of

  应该尽量用instance of ,因为type of 无论引用的什么类型对象,都会返回object。

2:unary operator
能把字符串变成数字
var sNum="12"
var iNum=+sNum;
alert(type of iNum)//ouputs "number"

3:>> >>>
   >>:又符号右移;>>>无符号右移

4:乘法

有NAN,结果为NAN
Infinity *0=NaN;Infinity*非零=+(-)Infinity

5:字符串比较

大写字母的代码比小写字母的代码小;
当字符串和数字进行比较的时候,字符串会先转化为数字

6:==和===
   ===在比较的时候不做类型转换

6:arguments
   参数不确定时,可以用它

7:对象
定义类的时候,尽量把同样的属性或者时函数用prototype来设置
for example:
            function Car(ccolor,cdoor)
            {this.color=ccolor;
             this.door=cdoor;
            }
            Car.prototype.showColor=function(){alert (this.color)};


8:
要转化成string,只需调用其toString()方法


           
先到这里~~~下次再补充~~~

论坛首页 Web前端技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics