0 votes
in JavaScript by
Which one of the following is not a keyword:

a) if

b) with

c) debugger

d) use strict

1 Answer

0 votes
by

Answer: D

Reason: The "use strict" is a type of directive which was introduced in ECMAScript5 and as we all know that directives are not the statements because they do not include any language keywords.

...