diff --git a/Chapter 11/Exercise_11.8.html b/Chapter 11/Exercise_11.8.html index b6bc062..5edd64f 100644 --- a/Chapter 11/Exercise_11.8.html +++ b/Chapter 11/Exercise_11.8.html @@ -15,14 +15,14 @@ if (!isNaN(e.key)) { output.textContent += e.key; } - }) + }); el.addEventListener("keyup", (e) => { console.log(e.key); - }) + }); el.addEventListener("paste", (e) => { console.log('pasted'); - }) - }) + }); + });