소스 검색

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;