Mode:
Duration:
1
2
3
4
5
6
7
document.addEventListener('DOMContentLoaded', () => {
const input = document.getElementById('input');
const output = document.getElementById('output');
input.addEventListener('input', () => {
output.textContent = input.value;
});
});Coding works best on desktop or with an external keyboard.