Computer Science, asked by anmolnikambe, 1 month ago

Which method is used to change the background color of the page after a specified number of milliseconds? *​

Answers

Answered by arunzinjade1
0

milliseconds means what ???

Answered by shahegulafroz
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