Feedback for subjective question
Question 1: Which statement is wrong for naming an identifier?
Identifiers are names used by JavaScript to refer to variables, objects, properties, methods, and functions.
An identifier must begin with an alphabetical character (a-z or A-Z), underscore "_" character or $ character.
Subsequent characters can be an alphabetical (a-z or A-B) or numeric character (0-9) or an underscore
Identifiers are names used by JavaScript to refer to variables, objects, properties, methods, and functions.
An identifier must begin with an alphabetical character (a-z or A-Z), underscore "_" character or $ character.
Subsequent characters can be an alphabetical (a-z or A-B) or numeric character (0-9) or an underscore
Current Answer:
Be the first to post an answer to earn 100CR.