Coggle requires JavaScript to display documents.
var fun=function(){ console.log(1);};//要加分号 fun();
var a =function(){ console.log(1);}; var b=a; b.haha=2; console.log(a.haha);
var fun=function(){ console.log(2);}; function fun(){ console.log(1);} fun(); //输出2
转换成0:空字符串、null、false 转成1:true 转NaN: undefiened, 非空非纯数字字符串
< >= <= == != === !==返回bool,===不仅值相等,数据类型也要相同注意:其他数据会隐式转换成数字进行比较,转换规则同上。注意:null==0返回false,但null>=0或null<=0返回true. 可以理解为null是无限接近0的一个数
小知识:清空控制台 ctrl + L, 换行 shift + enterctrl + ↑ 重复之前的代码
arr.splice(index, howmany, element1, ...) //前两参数必填
arr.sort(function(a,b){ //升序排序 if(a<b) return -1; else if(a>b) return 1; //返回1表示要换位 else return 0;})