Important Notice:

Course Content
Switch Statement
0/1
break and continue Statements
0/3
Basic Form Validation in JavaScript
0/1
JavaScript & Angular JS (Chapter- 6) M2-R5.1
About Lesson

Variable:-

               Variables किसी memory को दिया गया नाम है  जो कि किसी value  को Hold करती है या store करती है।  Means जब हम Variable define करते हैं  तो हम memory में value को store करके उसे नाम दे रहे होते हैं।  हम कह सकते हैं कि variables ‘named storage‘ होते हैं जिनका use किसी value को store करने के लिए किया जाता है।

JavaScript में variables 3 तरह से declare किये जाते हैं –

  1. using let keyword

  2. using var keyword

  3. const keyword

Note:-

1. var keyword के through define किये गए variables को आप re-declare कर सकते हैं लेकिन let keyword के through define किये गये variable को आप re-declare नही कर सकते हैं।

2. JavaScript में Variables Define करते समय हमें कोई datatype करने की जरूरत भी नहीं पड़ती है , जैसे कि JAVA, C में कोई variable define करते समय इसका dataType define करना पड़ता है।

3. Let Keyword:- let भी var की ही तरह है लेकिन आजकल var की जगह let का use होता है

4. Const Keyword:- यदि किसी variables की value हमेशा constant रखनी है यानि की change नही करनी है तो ऐसी स्थिति में constant variables का use किया जाता है और ऐसे वैरिएबल को बनाने के लिए const keyword का उपयोग होता है।

Syntax:- var <var_nm>

      Var is a keyword. <var-Nm> is a valid variable name.

 

Variable:-

              Variables is the name given to any memory that holds or stores a value. Means, when we define a variable, we are storing the value in memory and giving it a name. We can say that variables are ‘named storage’ which are used to store a value.

Variables are declared in 3 ways in JavaScript –

  1. using let keyword

  2. using var keyword

  3. const keyword

Note:-

1. You can re-declare the variables defined through var keyword but you cannot re-declare the variables defined through let keyword.

2. While defining variables in JavaScript, we do not even need to define any datatype, like while defining any variable in JAVA, C, its datatype has to be defined.

3. Let Keyword:- let is also like var but nowadays let is used instead of var.

4. Const Keyword:- If the value of any variable is to always be kept constant i.e. not to be changed, then in such a situation constant variables are used and const keyword is used to create such variables.

Syntax:- var <var_nm>

      Var is a keyword. <var-Nm> is a valid variable name.

 

error: Content is protected !!