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

Identifiers:-

      Variable, Constant, Function Etc. के नाम को कहा जाता हैं, और ये नाम कैसे रखे जाते हैं यानि डिफाइन किये जाते है इसके कुछ Rules होते हैं जो  निम्न हैं –

  • Identifiers के नाम का पहला अक्षर Alphabet (a – z या A – Z), Underscore ( _ ) या Dollar ( $ ) हो सकता हैं जैसे कि UmaClasses1 , _UmaClasses, $UmaClasses

  • नाम में Alphabet, Underscore ( _ ), Dollar ( $ ), या Digits का ही यूज़ किया जा सकता हैं Hash ( # ) Dot ( . ) का यूज़ नहीं कर सकते हैं। 

  • ना ही किसी Keyword को identifiers की तरह यूज़ कर सकते हैं।

 

Identifiers:-

                              Variable, Constant, Function etc. What is the name of, and how these names are kept i.e. defined, there are some rules for this which are as follows –

  • The first letter of the name of identifiers can be Alphabet (a – z or A – Z), Underscore ( _ ) or Dollar ( $ ) such as UmaClasses1, _UmaClasses, $UmaClasses.

  • Only Alphabet, Underscore ( _ ), Dollar ( $ ), or Digits can be used in the name. Hash ( # ) Dot ( . ) cannot be used.

  • Nor can any keyword be used as identifiers.

 

error: Content is protected !!