목록전체 글 (435)
보라코딩
재밌게 들었고 진짜 좋은 강의라 생각된다. localstorage와 filter를 사용하는 것도 알게 되었고 개발자 모드에서 network나 application을 보는 법도 배웠다. 강의가 길지 않아서 자바스크립트 정리하는 느낌으로 듣기 참 좋다 :) todo.js const toDoForm = document.getElementById("todo-form"); const toDoList = document.getElementById("todo-list"); const toDoInput = document.querySelector("#todo-form input"); const TODOS_KEY = "todos"; let toDos = []; // let으로 해서 update 가능하게 // 삭제 버튼 ..
코드가 엄청 심플해서 놀랐다! 유용한 코드라 생각해서 기록하기 :) 날씨 API는 아래 사이트 참고하기! Weather API - OpenWeatherMap Please, sign up to use our fast and easy-to-work weather APIs. As a start to use OpenWeather products, we recommend our One Call API 3.0. For more functionality, please consider our products, which are included in professional collections. openweathermap.org weather.js const API_KEY = "키를 넣으시오~~~"; function o..