flatMap()

array,tipjs

Use flatMap() creates a new array with sub-array elements flattened by specified depth.

[[2], [4], [6], [8]].flatMap(val => val/2) // [ 1, 2, 3, 4 ]

var new_array = arr.flatMap(function callback(currentValue[, index[, array]]) {
 // return element for new_array
}[, thisArg])

Có thể bạn đã miss một số snippets code

Lấy tháng hiện tại trong javascript

Lấy tháng hiện tại trong javascript

So sánh hai array trong javascript

Làm thế nào để đánh giá xem hai mảng có bằng nhau không? Có hai cách đó là sử dụng JSON.stringify() hoặc toString()

Object.keys và Object.getOwnPropertyNames

Object.keys và Object.getOwnPropertyNames

Merge Array

How to combine two sorted arrays into one? We can do this easily with the spread operator.

Ajax, call jQuery POST to node.js expressjs

Ajax, call jQuery POST to node.js expressjs