Introduction
Basics
Expressions and Operators
Statements
Loops
Function
Strings
Arrays
Script Tag
Console
Alert, Prompt, Confirm
BOM & DOM
Walking the DOM
Events and Other DOM Properties
Practice Problems
Interview Preparation
Sat, Apr 26, 2025, 06:46:46 PM
Problem 29
. Change the background of the page to yellow, red or any other color based on user input through prompt.
let
input
=
prompt
(
"Enter color"
)
;
document
.
body
.
style
.
background
=
input
;
Copy