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

Merge Array

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

JavaScript: async/await with forEach

JavaScript: async/await with forEach()

Convert Array-like to True Array

Convert Array-like to True Array

Hàm lày ngày trong tuần javascript

Hàm lày ngày trong tuần javascript

Random String

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