Convert Array-like to True Array

object,array,tipjs

This is cool! Learning something new @wesbos ES6 course 🔥

const nodeList = document.querySelectorAll('ul li');

// Method 1: Convert to true Array
Array.from(nodeList);

// Method 2: Convert to true Array
[...nodeList];

// Now you can use map and other methods to loop

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

Sử dụng reduce và concat làm phẳng một array

Array.reduce() và Array.concat() có thể giúp chúng ta làm phẳng một Array như:

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

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

Detect when your site is visible to users

Detect when your site is visible to users

10 mẹo sử dụng array và object trong javascript

10 mẹo sử dụng array và object trong javascript

Promise + gì

promise + gì