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
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.