Hi...!
In this article, we are discussing variables. There are different declared variables in different programming languages. Javascript is very freely declaring variables.
There is some different way to declare in javascript. But First
What are the variables?
Now you think about your purchase gift box. But the gift boxes are empty there is no value π
. It looks like the above image βοΈ
There is no value.
Now you put a toy in the gift box π. The gift box is valued because you put a toy in the gift box. if you open the box you see there is a toy. π€©
Here gift box we are call variable name and toy we are called value.
variable name is = gift box
variable value is = toy
the variable name holds the data and stores it.
How do I declare variables in javascript? can you tell me?
In javascript, you can declare variables in 3 ways.
- using var
- using let and
- using const
var
First, we are trying with var
variables. So var
is stores data in memory for example
var fullName = 'Kuldeep';
using var keyword you are use-value anywhere in the program. Now you are using fullName
anywhere in the howl program like console.log(fullName);
π€ͺ
let
Now second is the Let keyword.
Let keyword you also store data in javascript program. There are lots of think with the let keyword. Because with let you are store value multiple in one variable.
For example
let message;
message = 'Hello kuldeep π';
console.log(message);
There are messages that hold one think Hello Kuldeep π. But if you want to store data in one variable you can also do that.
let user = 'Kuldeep', age=25, message = 'Kuldeep Hello'
console.log(user);
console.log(age);
console.log(message);
In older scripts, you may also find another keyword: var instead of let:
var
and let
work as same but var are the old way to declare now a new way to hold store data let
keyword.
But if you are declaring a variable already and you have put another variable value what happens when you try like this.
let fullName = 'Kuldeep';
and now
let fullName = 'Jone'
;
What happened when you run π in this program.
There are show errors π₯΄. O nooo because fullName is already declared in the program
I have an error in the console.
Uncaught SyntaxError: Identifier 'fullName' has already been declared
Now we are talking about rules about how to declare a variable and variable name.
1st: Variable name does not start with a number and # keyword.
var 1name='kuldeep';
β
var #name= ''
β
π this is wrong to declare a variable in javascript.
2nd: Variable name start with A-z, $, _
let firstName = 'Oliver';
β
let _secondName = 'kuldeep';
β
π this Right way to declare a variable
3rd: You are not using -
in javascript
let first-name='Jone';
β
π this is wrong to declare a variable in javascript.
4th: CaseSensitve word.
let first = "kuldeep";
and you write let fiRsT ='Oliver';
π There is two different variable name first and fiRsT are to the different thing in Javascript.
5th: We do not use reserved keywords in javascript
var let='kuldeep';
β
let const = 'Oliver';
β
Const
const keyword also works as let keyword.
If you have any queries about this article you can comment below
Top comments (0)