Tránh viết biến có phạm vi global

tipjs,scope,global

Không nên

    var map = document.querySelector("#my-map");
    map.style.height = "600px";
Nên
!function(){
    var map = document.querySelector("#my-map");
    map.style.height = "600px";
}()

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

How to reverse an Array?

Reversing an array in JS is really simple with the standard array method. Like below

Await in a for loop

How to Await in a for loop

try/catch es10

An update for developer convience allows the use of try/catch without an explicit e Error reference in the catch call.

JavaScript: async/await with forEach

JavaScript: async/await with forEach()

Random String

Random String với độ dài tuỳ chọn