Main Page: Difference between revisions

From ProgZoo
Jump to navigation Jump to search
Line 7: Line 7:
<pre class='ans'>
<pre class='ans'>
alert(6 * 7);
alert(6 * 7);
</pre>
</div>
==Change Content==
<div class='qu'>
Where's Wally?
<pre class='usr'>
document.body.innerHTML = 'Wally was here';
</pre>
<pre class='ans'>
document.body.innerHTML = 'Wally was here';
</pre>
</pre>
</div>
</div>

Revision as of 09:43, 1 August 2021

1) Hello World, JavaScript

What is 6 times 7?

Input


Output

alert(6 * 7);
alert(6 * 7);

2) Change Content

Where's Wally?

Input


Output

document.body.innerHTML = 'Wally was here';
document.body.innerHTML = 'Wally was here';