Main Page: Difference between revisions

From ProgZoo
Jump to navigation Jump to search
No edit summary
No edit summary
Line 4: Line 4:
* [[Flags with Stars]]
* [[Flags with Stars]]
* [[Flags with Repeats]]
* [[Flags with Repeats]]
* [[Flags with Methods]]


* [[DOM Creating content]]
* [[DOM Creating content]]

Revision as of 23:20, 16 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';