Hexo 试验

##正文:

###复习数组的方法
-1.push()
-2.unshift()
-3.pop()
-4.shift()
-5.slice()
-6.splice()
-7.concat()
-8.indexOf().lastIndexof()
-9.forEach(function(item,index,input){})
-10.map(function(item,index,input){return item})
-11.join(“”)
-12.reverse()
-13.sort
-14.sort(function(a,b){return a-b})