js中陣列的number或string型別轉換 及其他api
阿新 • • 發佈:2021-01-18
技術標籤:js
將String型別的陣列轉為Number型別:a.map(Number)
將Number型別的陣列轉為String型別:a.map(String)
let a = ['1', '2', '3'];
let b = [4, 5, 6];
console.log(a.map(Number))
console.log(b.map(String))
列印結果:
替換字串中指定字元:a.replace(/指定字元/,'替換後的字元')
var str = "Visit Microsoft!" let key = str.replace(/Visit/, "My"); console.log(key) //輸出:My Microsoft!
求陣列中的最大值:Math.max([...arr])
求陣列中的最小值:Math.min([...arr])
let num = [1,9,2,5,20,4]
let max = Math.max(...num)
let min = Math.min(...num)
console.log(max)//輸出:20
console.log(min)//輸出:1