摘要:
数组排序 arr.sort(function compare(a,b){return b.value-a.value}); json 排序 $.getJSON('URl',function(data){ data.sort(function(a,b){return a.demoname-b.demo 阅读全文
摘要:
安装好git后的操作 命令 1 . git config --global user.name "你的git名称" 命令2. git config --global user.email "你的git验证邮箱" 创建本地仓库 命令 1 . cd D: 进入 相应的磁盘 命令 2 . mkdir '你 阅读全文
摘要:
push/pop(数组开头添加移除元素的方法)、unshift/shift(数组末尾添加和移除的方法) var arr3 = ['b','c','d']; console.log(arr3.unshift('a'));//数组开头添加一个元素 //打印的数组中元素的个数 console.log(ar 阅读全文