1.

Is break a valid variable name?why/why not​

Answer»

Answer:

no

Explanation:

BREAK or boolean variable names are not valid. JavaScript variable names should not start with a NUMERAL (0-9). They must BEGIN with a letter or an UNDERSCORE character. For example, 123test is an invalid variable NAME but _123test is a valid one.



Discussion

No Comment Found