From 13ff73b9d2e66acc1b0bcd56ff16f8701d8e0157 Mon Sep 17 00:00:00 2001 From: Micah Godbolt Date: Tue, 26 Feb 2019 08:59:15 -0800 Subject: [PATCH] remove console log --- step1-03/final/index.html | 1 - 1 file changed, 1 deletion(-) diff --git a/step1-03/final/index.html b/step1-03/final/index.html index 0222d11..ddf87e9 100644 --- a/step1-03/final/index.html +++ b/step1-03/final/index.html @@ -49,7 +49,6 @@ function updateRemaining() { const remaining = document.querySelector('.remaining'); const todos = document.querySelectorAll('.todo').length; - console.log(todos); remaining.innerText = todos; }