JavaScript Output
| Method | Use |
|---|---|
console.log() | Debug (DevTools) |
alert() | Popup dialog |
innerHTML | Update page |
| Method | Use |
|---|---|
console.log() | Debug (DevTools) |
alert() | Popup dialog |
innerHTML | Update page |
console.log('Debug message');
alert('Popup!');
document.getElementById('out').innerHTML = '<b>Updated!</b>';
More in JavaScript