Following rules are applied on naming variables-
-
आपके variables का नाम किसी letter,underscore या $ sign से शुरू होना चाहिए.
-
किसी भी variables का नाम number से start नहीं करना चाहिए ये allowed नहीं हैं।
-
पहले अक्षर के बाद हम अंक (0 से 9) का उपयोग कर सकते हैं, उदाहरण के लिए value1, v1.
-
आपके पास वेरिएबल में स्पेस नहीं हो सकता.
-
JavaScript में variables के name reserve keywords नहीं होने चाहिए।
-
JavaScript मे Variables Case Sensitive होते है इस प्रकार उदाहरण के लिए, name, NAME and Name को तीन अलग-अलग variables के रूप में माना जाता है।
Example:- var p_amt
Var p,r,t
Notes:- जब हम किसी वेरिएबल को declare करते हैं तो उसके लिए एक मान assign करना भी संभव है, इस प्रक्रिया को initialization कहा जाता है।
Syntax:- var <var_nm>=<value>
Example:-
Var x=100;
x+102;
output:- 202
Following rules are applied on naming variables-
-
The name of your variables should start with a letter, underscore or $ sign.
-
Name of any variable should not start with number, it is not allowed.
-
After the first letter we can use digits (0 to 9), for example value1, v
-
You cannot have spaces in a variable.
-
Names of variables in JavaScript should not contain reserved keywords.
-
Variables in JavaScript are case sensitive, thus for example, name, NAME and Name are treated as three different variables.
Example:- var p_amt
Var p,r,t
Notes:- When we declare a variable it is also possible to assign a value to it, this process is called initialization.
Syntax:- var <var_nm>=<value>
Example:-
Var x=100;
x+102;
output:- 202