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 axios get
await axios get
Detect when your site is visible to users
Detect when your site is visible to users
Random String
Random String với độ dài tuỳ chọn
group by property javascript use reduce
group by property javascript use reduce