GDGregory Duttoningregarrific.hashnode.dev·Sep 13, 2023 · 4 min readReact and the Virtual DOMAs a software engineering student, learning to manipulate the Document Object Model (DOM) is an important JavaScript skill. Most software engineers learn React after they have learned JavaScript. React is known for being incredibly powerful when it c...00
GDGregory Duttoningregarrific.hashnode.dev·Jun 26, 2023 · 4 min readJavaScript iterations: for...in, for...of and forEachAs a JavaScript beginner, most people learn the basics of iterating over objects like arrays using while and for loops. Advancing beyond the basics adds some new options including for...in, for...of, and forEach. It may not always be clear which one ...00