You are on page 1of 2

Muskan Agarwal

MCA (Section: A)
RollNo:55
Experiment
Objective – Design a Javascript program to change the
background color in repeated manner.
<!DOCTYPE html>
<html>
<head>
<title> background -color Change></background-colorCahnge></title>
</head>
<body>
<h1>background Experiment</h1>
<script>
setInterval(
function () {
var randomColor = Math.floor(Math.random()*16777215).toString(16);
document.body.style.backgroundColor = "#"+randomColor;
},1000);
</script>
</body>
</html>

Output:-

You might also like