JSJAYESH SHARMAinweb-dev-explained.hashnode.dev00Array Flatten in JavaScript7h ago · 2 min read · What are Nested Arrays ? Nested Arrays contains other arrays as its elements. In Simple Words, these are arrays which have elements or arrays as other elements. For Example :- const num = [1, 2, [3, 4Join discussion
JSJAYESH SHARMAinweb-dev-explained.hashnode.dev00The Magic of this, call(), apply(), and bind() in JavaScriptMar 9 · 4 min read · One of the most confusing topics for JavaScript beginners is the keyword this.However, once you understand a simple rule, it becomes much easier. this refers to the object that is calling the functioJoin discussion
JSJAYESH SHARMAinweb-dev-explained.hashnode.dev00Object-Oriented Programming in JavaScriptMar 9 · 5 min read · As programs grow larger, managing code becomes difficult if everything is written in simple functions and variables.To organize code better, developers often use Object-Oriented Programming (OOP). OOPJoin discussion
JSJAYESH SHARMAinweb-dev-explained.hashnode.dev00Understanding Objects in JavaScriptMar 9 · 5 min read · In programming, we often need to store multiple related pieces of information about a single entity. For example, if we want to represent a person, we might need to store: Name Age City Using sepJoin discussion
JSJAYESH SHARMAinweb-dev-explained.hashnode.dev00Arrow Functions in JavaScriptMar 9 · 4 min read · Functions are one of the most important concepts in JavaScript. They allow us to organize logic into reusable blocks of code. Traditionally, JavaScript functions are written using the function keywordJoin discussion