JS Dom
What is Dom?
Catalogs the web page into individual objects that we can select and manupulate.
How to select objects using Dom?
var heading = document.firstElementChild; // first child of whole document.
var footer = document.lastElementChild; // l...
junho-shin.hashnode.dev2 min read