浏览代码

Remove logging.

Lee Morgan 6 月之前
父节点
当前提交
41c2fd254c
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      index.js

+ 0 - 1
index.js

@@ -42,7 +42,6 @@ const getWeather = ()=>{
     })
         .then(r=>r.json())
         .then((response)=>{
-            console.log(response);
             const tempDisplay = `${response.current.temp_f}\u00B0F`;
             document.getElementById("temp").textContent = tempDisplay;