Which method is used to change the background color of the page after a specified number of milliseconds? *
Answers
Answered by
0
milliseconds means what ???
Answered by
0
By using Java concept the setInterval() method is used to change the background color of the page after specified milliseconds.
Example:
var var1 = setInterval(color, 200);
This will change the background color after 200 milliseconds.
Similar questions