Web Programming/JS Arrary
Appearance
Array Sort
[edit | edit source]var points = [40, 100, 1, 5, 25, 10]
points.sort((a, b) => a-b)
console.log(points)
Array Map Reduce
[edit | edit source]array = [{x:1},{x:2},{x:4}]
newValue = 2
result = array.map(item => item.x==newValue)
.reduce((a,b)=>a||b)
console.log(result)
Array Filter
[edit | edit source]array = [{x:1},{x:2},{x:4}]
newValue = 1
newArray = array.filter(item => item.x>newValue)
console.log(newArray)
Array Push/Pop
[edit | edit source]var fruits = ["Orange"]
fruits.push("Kiwi")
console.log(fruits)
fruits.pop()
console.log(fruits)
Array Shift/Unshift
[edit | edit source]var fruits = ["Orange", "Kiwi"]
console.log(fruits)
fruits.shift()
console.log(fruits)
fruits.unshift("Apple")
console.log(fruits)