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

Rest Operator for Objects

Now we can use rest on the properties of an Object. It allows us to explicitly extract certain named variables, and assign any uncalled variables into a catchall Object.

Kiểm tra định dạng email bằng Javascript

Kiểm tra định dạng email bằng Javascript

How to reverse an Array?

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

using Typescript callback style error handling

promise in javascript

promise in javascript