Objects In JavaScript
what is object in JS, object is a data structure used to store related information together using key-value pair Each piece of data inside an object has: a key (also called a property name) a value
Mar 10, 202615 min read18

Search for a command to run...
Articles tagged with #chaiaurcode
what is object in JS, object is a data structure used to store related information together using key-value pair Each piece of data inside an object has: a key (also called a property name) a value

variable A variable is a named reference to a value stored in memory. in simpler term we say A variable is a named box that stores a value so the program can use it later. Example: let name = "Dushyan

Function: function in simplest word that you write code once and used it many place where u wanted without rewritting it again in again. function dushyantPratap(a, b) { return a + b ; } console.log(du
