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

Extend Object javascript

Extend Object javascript

encode/decode base64 with JS

Encoding to base64 is done with the btoa command

JavaScript: async/await with forEach

JavaScript: async/await with forEach()

kiểm tra email trong javascript

kiểm tra email trong javascript

Getting the last element of a split string array

Getting the last element of a split string array