ARAmi Ranainamirana.hashnode.dev00Flattening Arrays in JavaScript3h ago · 13 min read · So picture this. Your mum packed a tiffin for you. Four layers deep. Roti and sabji inside a dabba, inside another dabba, inside the bag, inside a cloth. You just want the roti and sabji. You do not wJoin discussion
ARAmi Ranainamirana.hashnode.dev00Destructuring in JavaScript3d ago · 6 min read · Destructuring is a syntax introduced in ES6 that allows you to extract values from arrays or properties from objects into clear, readable variables. It's like how we sort out our travel bag, instead oJoin discussion
ARAmi Ranainamirana.hashnode.dev00Understanding the this Keyword in JavaScript4d ago · 4 min read · The this keyword in JavaScript refers to the execution context of the current function, meaning its value is defined at the time the function is called, based on how it's called. So, the value of thisJoin discussion
ARAmi Ranainamirana.hashnode.dev00Template Literals in JavaScriptApr 9 · 4 min read · You know how we usually join strings or variables in JavaScript using +, right? const firstname = "Ami"; const lastname = "Ami"; const score = 90; // Old way const message = "Hello, " + firstname + lJoin discussion
ARAmi Ranainamirana.hashnode.dev00Understanding Object-Oriented Programming in JavaScriptMar 15 · 6 min read · Remember how we've been working with objects? Creating them one by one? Well, what if Ami needs to add 50 different items to her coffee house menu? Writing each object separately would be painful, rigJoin discussion