GGaneshinjavascriptfunctions.hashnode.dev·Sep 10, 2022 · 1 min readArraysArrays are special kind of data which can hold many values How we can create an array ? using an array literal [] using the new keyword creating an array using array literal [] creating an array using new keyword you can store different data t...01N
GGaneshinjavascriptfunctions.hashnode.dev·Sep 10, 2022 · 2 min readVariables in JavaScriptwhat is variable? The word variable means that can vary. variable is a container for storing data Javascript variable can store any data values (e.g., a number, a string,a boolean,etc) How variable is created? variable is created using var, let, co...00
GGaneshinjavascriptfunctions.hashnode.dev·Sep 9, 2022 · 1 min readJavascript functionshi hello welcome to my blog so now we are going to see what are functions? Function is a piece of code is executed when you call that function. so why we need Function? a repeated piece of code which is written multiple times instead of that when we ...00