is break a valid variable name?
why/why not
Answers
Answered by
1
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.
Similar questions