Display Program with javascript
we can do display our program these Three ways.
Javascript have 3 way to display your Program.
i. alert();
ii. document.write();
iii. console.log();
<body onload='alert("hello");'> //this is process for using onload()
we can do display our program these Three ways.
Javascript have 3 way to display your Program.
i. alert();
ii. document.write();
iii. console.log();
<body onload='alert("hello");'> //this is process for using onload()
No comments