Question: What is identifier in Javascript?Answer: Identifier– The name of a variable (or function)Starts with a letter, can contains digits & underscores Case Sensitive!! Should be meaningful to someone reading your code Good: accountBalance, amountDue Bad: bal, due, Just plain wrong: 2bOrNotToBe, +var, total-value |
Is it helpful?
Yes
No
Most helpful rated by users:
- What are JavaScript data types?
- What\'s relationship between JavaScript and ECMAScript?
- What does isNaN function do?
- How do you convert numbers between different bases in JavaScript?
- What is negative infinity?