Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Stopwatch project JS Step 1

My code:
window.onload = function() {
alert("Window Loaded");
}
What could be wrong?
by

2 Answers

iamabhishek
Don't add the alert.

Correct code:

window.onload = function () {}
ushindi
Thank you.

Login / Signup to Answer the Question.