PJPranjal Jaiswalinpranjaljaiswal.hashnode.dev·May 10 · 3 min readJavaScript Array 101An Array is a data structure that enables you to stpre a collections of items under a variable name, which may or may not be logically related.Usually,they are accessed by their index or key. Javascri00
PJPranjal Jaiswalinpranjaljaiswal.hashnode.dev·May 10 · 3 min readArrow Function in JavaScript: A Simpler Way to Write FunctionsAn arrow function in JavaScript is a concise way to write function expressions using the => syntax. Basic Syntax const functionName = () => { // code here }; Simple Example const greet = () => { 00
PJPranjal Jaiswalinpranjaljaiswal.hashnode.dev·May 10 · 3 min readUnderstanding Object in JavascriptThe object is one of the most useful data structures in JavaScript — a collection of associated key/value pairs. It allow us to group related data and function ality into a single, organized unit. New00
PJPranjal Jaiswalinpranjaljaiswal.hashnode.dev·May 10 · 2 min readControl Flow in JavaScript:If,Else, and Switch ExplainedControl flow refers to the order in which individual statements, instructions, or function calls are executed within a computer program It's just like making a decision on making which path of road gi00
PJPranjal Jaiswalinpranjaljaiswal.hashnode.dev·May 10 · 4 min readFunction Decleration vs Function Expression:What's the differnce?Function are one of the fundamental building block in Javascript. A function in Javascript is similar to a procedure- a set of statements that performs a task or calculates a value , but for a procedu00