-
字符串转换为数字比较查看全部
-
变数字“-”,变字符串“”查看全部
-
函数声明 - function add(a,b) 和 变量声明 var add 会被提前,但赋值操作会在后续操作才走。 所以 var add; //undefined var num = add(1,2); //TypeError:undefined is not a function查看全部
-
函数表达式: 1. var add = function (a,b){ // do sth }; 2.(function(a,b){ // do sth })(); 3.return function(){ // do sth }; 4.var add = function foo(a,b){ // do sth };查看全部
-
使用Array.prototype.join.call() 可拼接字符串 Array.prototype.join.call(str,"_"); // "h_e_l_l_o__w_o_r_l_d"查看全部
-
数组与对象的相同点 & 不同点:查看全部
-
类型检测小结查看全部
-
extensible标签查看全部
-
//特别精致的判断对象类型的方法 var toString = Object.prototype.toString; function getType(o){ return toString.call(o).slice(8,-1); }查看全部
-
class标签。。有点难查看全部
-
属性有属性标签,对象也有对象标签。查看全部
-
属性标签更复杂的案例。。查看全部
-
Object.defineProperties()//不写的属性标签默认都是false查看全部
-
Object.keys(person);//显示person对象的可枚举的属性查看全部
-
属性标签。。查看全部
举报
0/150
提交
取消