Skip to content

Commit c95cee6

Browse files
committed
feat(JS): delete unnecessary console.log
1 parent 85e5da3 commit c95cee6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ clearHistoryBtn.addEventListener("click", () => {historyElement.innerHTML = "";
1313
document.addEventListener('keydown', handleKeyPress);
1414

1515
function handleKeyPress(event) {
16-
console.log(event.code)
16+
1717
const key = event.key;
1818
const button = document.querySelector(`[data-value="${key}"]`);
1919

0 commit comments

Comments
 (0)