1.如何统计自己的代码行数
安装:yarn global add cloc
(cloc:count lines of code)
统计:cloc --vcs=git .
(.表示分析当前目录)
2.李爵士发明HTML
赖先生发明CSS
布兰登发明JS
一、JavaScript的诞生
1.布兰登临危受命
2.JS的命名
二、ECMAScript标准的定制
1.时间
2.JS和ECMAScrip的关系
ECMAScrip是纸上的标准,JS是浏览器的实现
智商标准往往落后于浏览器,先实现,再写进标准
3.JavaScript兴起
杀手级应用Gmail
JavaScript的十个缺陷
(转载于阮一峰:JavaScript的十个缺陷)
不适合开发大型程序
Javascript没有名称空间(namespace),很难模块化;没有如何将代码分布在多个文件的规范;允许同名函数的重复定义,后面的定义可以覆盖前面的定义,很不利于模块化加载。
非常小的标准库
Javascript提供的标准函数库非常小,只能完成一些基本操作,很多功能都不具备。
null和undefined
null属于对象(object)的一种,意思是该对象为空;undefined则是一种数据类型,表示未定义。
typeof null; // object typeof undefined; // undefined
两者非常容易混淆,但是含义完全不同。
var foo; alert(foo == null); // true alert(foo == undefined); // true alert(foo === null); // false alert(foo === undefined); // true
在编程实践中,null几乎没用,根本不应该设计它。
a = 1; (function(){ b=2; alert(a); })(); // 1 alert(b); //2
function(){ return { i=1 }; }
原因是解释器自动在return语句后面加上了分号。
function(){ return; { i=1 }; }
alert(1+10); // 11 alert("1"+"10"); // 110
如果一个操作项是字符,另一个操作项是数字,则数字自动转化为字符。
alert(1+"10"); // 110 alert("10"+1); // 101
这样的设计,不必要地加剧了运算的复杂性,完全可以另行设置一个字符连接的运算符。
NaN === NaN; //false NaN !== NaN; //true alert( 1 + NaN ); // NaN
与其设计NaN,不如解释器直接报错,反而有利于简化程序。
由于Javascript的数组也属于对象(object),所以要区分一个对象到底是不是数组,相当麻烦。Douglas Crockford的代码是这样的:
if ( arr && typeof arr === 'object' && typeof arr.length === 'number' && !arr.propertyIsEnumerable('length')){ alert("arr is an array"); }
"" == "0" // false 0 == "" // true 0 == "0" // true false == "false" // false false == "0" // true false == undefined // false false == null // false null == undefined // true " \t\r\n" == 0 // true
因此,推荐任何时候都使用"==="(精确判断)比较符。
new Boolean(false); new Number(1234); new String("Hello World");
与基本数据类型对应的对象类型,作用很小,造成的混淆却很大。
alert( typeof 1234); // number alert( typeof n