1. 使用unicode编码
2. javascript有:函数类(Function)、数组类(Array)、错误类(Error)、正则类(RegExp)、日期类(Date)
3. 显示系统时间的一段代码:var t = new Date();var t1 =t.getFullYear() +"年" +t.getMonth() + "月" + t.getDate() + "日" + t.getHours() + "时" + t.getMinutes() + "分" + t.getSeconds() + "秒"; alert(t1);
4. javascrip禁止八进制
5. 2的平方根 Math.sqrt(2);
2的立方根 Math.pow(2,1/3);
6. max/max ----->Nan
sqrt(-n)-------->Nan
7. 全局变量 Infinity和NaN表示无穷大数和非数字。
eg: var a = infinity; //可写可读
var a1 = POSITIVE_INFINITY;//只读
8. isNaN();
isFinite(); //是数字或不是Infinity、-Infinity是返回true
9.因为JavaScript对于浮点数计算的缺陷,所以在金融计算时将金额换算成整数“分”计算更好。
10.