▌reverse
- 反轉
原陣列
var a=[1,2,3]
console.log(a.reverse()) // [3,2,1]
▌sort
- 排序
原陣列
,如果不用引數,就用abc順序來排序
var a=["c","v","a"]
console.log(a.sort())
▌concat
- 結合兩個陣列,並
回傳
一個新的陣列
var a=["a","b","c"]
var b=[1,2,3]
c=a.concat(b)
console.log(c)
If的寫法 我們希望當變數是a時就回傳1,變數是b就回傳2,變數是c就會回傳3,一般寫法就是用if,但是這樣會很冗 // IF style var word if(word == 'a'){ word = 1 } else if...
沒有留言:
張貼留言