0 votes
in JavaScript by

When interpreter encounters an empty statements, what it will do:

a) Shows a warning

b) Prompts to complete the statement

c) Throws an error

d) Ignores the statements

1 Answer

0 votes
by

Answer: D

Reason: In JavaScript, when the interpreter encounters a empty statements it normally ignores or not response to that empty statement. The empty statements also sometimes very useful like we use the empty statements for creating loop for nothing.

Related questions

+1 vote
asked Mar 21, 2021 in JavaScript by rajeshsharma
0 votes
asked Dec 1, 2022 in JavaScript by john ganales
...