dom js cheatsheet code example
Example 1: javascript cheat sheet
Best Cheat Sheet:
https://websitesetup.org/wp-content/uploads/2020/09/Javascript-Cheat-Sheet.pdf
Example 2: dom javascript cheat sheet
// Get child nodes
var stored = document.getElementById('someid');
var children = stored.childNodes;
// Get parent node
var parental = children.parentNode;