NKNand Kishoreinnandjavascript.hashnode.dev·Mar 5 · 2 min readJavaScript Operators: The Basics You Need to KnowWhat operators areOperators are those which are used to perform certain operation on some values.Arithmetic operators (+, -, , /, %)*Add (+), Subtract (-), Multiply (**), Division (/), Modulo or Remai00
NKNand Kishoreinnandjavascript.hashnode.dev·Mar 5 · 2 min readJavaScript Arrays 101Arrays are Data Structure used to store hetrogenous data (multiple data types).We need them for clarity and to perform some operations on the elements of it. > Array CreationThere are multiple ways 00
NKNand Kishoreinnandjavascript.hashnode.dev·Mar 5 · 2 min readFunction Declaration vs Function Expression: What’s the Difference?Function DeclarationWhen function is declared like It is called function declaration Function expressionIt clearly means that function will be in form of a expression that means it can be stored in 00
NKNand Kishoreinnandjavascript.hashnode.dev·Mar 5 · 2 min readControl Flow in JavaScript: If, Else, and Switch ExplainedWhat does control flow means in programming Control flow means a particular code section to run based on a condition. That is called control flow in programming. "Controlled way mein yani ki condition00
NKNand Kishoreinnandjavascript.hashnode.dev·Mar 1 · 2 min readArrow Functions in JavaScript: A Simpler Way to Write FunctionThese are another way to define a function in JavaScript. You can either directly create an arrow function or assign to them variables. Below is the code for that For assigning arrow function to a va00