AZAhmed Zenjiinahmedzenji.hashnode.dev·Jul 17, 2022 · 2 min readThe Document Object ModelIntroduction to DOM What is the DOM Document Object Model: structured representation of HTML documents allows JavaScript to access HTML elements and styles to manipulate them Connection between the HTML, CSS and JavaScript The DOM Tree Structure ...00
AZAhmed Zenjiinahmedzenji.hashnode.dev·Jul 16, 2022 · 2 min readHow to Think Like a DeveloperJumping into a problem without much thinking before hand is not the best way to solve a task, and while it seems like spending time on a task before even coding seems like a waste of time, it's actually quite the opposite By following a structured fr...00
AZAhmed Zenjiinahmedzenji.hashnode.dev·Jul 12, 2022 · 3 min readLearning How to learn CodeBuilding Projects (best way to learn programming) The best wat to learn programming from scratch is picking you project so hard it scares you to think of it If the project doesn't scare you, it's probably not big enough Once you choose your desir...00
AZAhmed Zenjiinahmedzenji.hashnode.dev·Jul 11, 2022 · 3 min readJavaScript Loops (Simplified)Loops Loops allows us to automate repetitive tasks Iterate is a generic term that means “to repeat” in the context of loops. A loop will continue to iterate until a specified condition, commonly known as a stopping condition, is met. Types of Loo...00
AZAhmed Zenjiinahmedzenji.hashnode.dev·Jul 11, 2022 · 3 min readJavaScript Data Structures (Simplified)Data Structures The 2 most basic and used data structures in JavaScript are Objects and Arrays Arrays Arrays are container that are used to store data of a single value Although in JavaScript, Arrays can hold data of any value Syntax const comm...00