From 83503d703b221dfcfa7b77c65cc46d0f81e30f3b Mon Sep 17 00:00:00 2001 From: Karan <50290386+Sonawane-Karan26@users.noreply.github.com> Date: Fri, 3 Dec 2021 14:23:17 +0530 Subject: [PATCH] restructured --- Chapter 11/Exercise_11.8.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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'); - }) - }) + }); + });