EHErik Hoversteninehoversten.hashnode.dev·Sep 19, 2022 · 6 min readDOM Nodes and TraversalContinuing our series Introducing the DOM and how we can use it to build web sites, today we will talk about DOM Nodes and how we can move around or navigate the DOM. Traversing the DOM The DOM also gives us the ability to traverse or move along its ...00
EHErik Hoversteninehoversten.hashnode.dev·Sep 8, 2022 · 7 min readIntroduction to the DOMOne of the big things that JavaScript allowed developers to do was to make the HTML page more interactive and dynamic. So as JavaScript developers we need to understand how we can communicate and interact with our applications HTML page(s). This is w...00
EHErik Hoversteninehoversten.hashnode.dev·Jun 27, 2022 · 7 min readHigher Order Functions in JavaScriptIn JavaScript, functions are considered First-Class Citizens. So what is a first-class function? First-Class functions can be... assigned to a variable passed as an argument to another function returned as a result from another function. Basically...00
EHErik Hoversteninehoversten.hashnode.dev·May 25, 2022 · 4 min readLooping through ObjectsIn the last article we talked about how you can use loops to iterate over/through the contents of an Array or String. So let's continue and see how we can iterate through the contents of an Object in JavaScript. Iterate through an Object The first wa...00
EHErik Hoversteninehoversten.hashnode.dev·Apr 29, 2022 · 7 min readUsing Loops in JavaScriptIn previous articles we have talked about how for, while, and do...while loops work at a basic level. So I hope that you have taken some time and played around with those loops enough that you feel comfortable enough to take on todays examples. So l...01T