Level 11 Level 13
Level 12

Output


4 words 0 ignored

Ready to learn       Ready to review

Ignore words

Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.

All None

Ignore?
window.alert("Hello World");
displays an alert window with "Hello World"
document.write("Hello World");
overwrites a document with "Hello World"
console.log("Hello World");
displays "Hello World" in the browser console log
document.getElementById("id").innerHTML = "new content";
access a document element by id and replace its inner content with "new content"