Level 114
Level 116
7 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("text");
Alert Box syntax
window.confirm("text");
Confirm Box syntax
window.prompt("text","defaultText");
Prompt Box
window.clearTimeout(timeoutVariable)
stops the execution of the function specified in setTimeout().
window.clearInterval(timerVariable)
stops the executions of the function specified in the setInterval() method.
document.cookie="username=John Doe";
Create a Cookie with JavaScript
var x = document.cookie;
Read a Cookie with JavaScript