Wednesday, August 18, 2021

Basic Concept Value and Variable in Javascript Hindi Guideline

Value in Javascrip - In Programming Value means a small data like Name or Number.

For Print Value using Javascript use below code in Your Code Editor -

// Print Value using Javascript...
console.log('Anjana');
console.log(25);
Variable in Javascript -  Variable is storage where we store our value so we can easily use this in our code.For Example of Variable - let firstName = 'Anjana';In this code we have created a variable called firstName and store value Anjana on this.
Lets Print this value using variable in Javascript -; // Print our Value using Variable in Javascript
let firstName = 'Anjana';
console.log(firstName);

0 comments

Post a Comment