DOM 이란? Document Object Model : Dom allows javascript to access html elements and styles to maniputate them. The Dom represents a document with a logical tree. Each branch of the tree ends in a node, and each node contains objects. DOM methods allow programmatic access to the tree. with them, you can change the document's structure, style, or content. - from MDN https://developer.mozilla.org/en-..