js 方法(運算元組為主

端端的土化程式碼發表於2019-03-21

arr.join(分隔符) arr.push() 陣列後面新增新值 arr.pop()後刪 unshift前加 shift前刪 arr.reverse()翻轉 arr.sort()首先按照首字元順序排,依次第二個第三個排 arr.sort(function(a,b){ return a-b 從小到大 }) arr1.concat(arr2)陣列拼接

slice(start,end)擷取 無end擷取到最後 無引數全部擷取 splice(start,deletedCount,item) 從start開始刪除deletedCount個,在start位置新增item

indexOf:查詢元素在陣列中第一次出現的位置 indexOf(元素,fromIndex) 從第幾個下標開始找 不存在陣列中即返回-1

清空陣列 splice(0,arr.length)

num.toFixed(n)保留小數點後幾位 num.toString()轉化為字串

字串可遍歷不可增刪

indexOf lastIndexOf最後一次出現的位置

trim()去除字串兩端空白

大小寫轉換 .toUpperCase()大寫 .toLowerCase()小寫

.substring()擷取全部

substr(start,count) 從start下標開始,擷取幾個

切割split .split(分隔符) 切割字串放進新陣列 與join相反

字串替換 replace str.replace('a','b') 把第一個a換成b

所有a,通過正規表示式/a/g str.replace(/a/g,'b')

訪問str 下標為n的字元 str[n] str.charAt(n)

相關文章