Level 12
Level 14
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.
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"