일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- react firebase
- 프로그래머스 완전탐색
- 컴퓨터 네트워크
- 코딩테스트 고득점 Kit
- 데이터모델링과마이닝
- 자바 공부
- 코딩테스트 고득점 Kit 완전탐색
- 리액트 훅
- JavaScript
- 프로그래머스
- codesandbox
- 프로그래머스 자바
- 리액트
- useEffect
- websocket
- 백준
- 자바
- React JS
- vanillaJS
- 코틀린
- NextJS
- Java
- react hook
- 프로그래밍 언어론
- 디자인 패턴
- react
- 자바스크립트
- 장고
- design pattern
- useState
- Today
- Total
목록arrow 함수 (2)
기록하는 개발자
- 위 스크린샷의 왼쪽 화면에서 체크리스트의 항목을 삭제하면 오른쪽 화면의 localStorage에서도 삭제된다. - 새로고침 실행 시 내가 삭제를 원했던 항목을 아래 스크린샷처럼 오른쪽 화면 및 localStorage 에서 모두 보이지 않도록 조치를 취한다. Log in 00:00:00 const toDoForm = document.getElementById("todo-form"); const toDoList = document.getElementById("todo-list"); const toDoInput = toDoForm.querySelector("input"); let toDos=[]; const TODOS_KEY = "todos"; fu..
Checklist Load 구현 - list를 입력 받아 localStorage에 저장한다. - 새로고침 후에도 localStorage로부터 이전에 저장한 value를 load해서 list를 유지할 수 있다. - 이전 정보 load 후 추가로 list를 입력 받을 때 덮어쓰기 되지 않고 기존 list에 추가되도록 한다. Log in 00:00:00 const toDoForm = document.getElementById("todo-form"); const toDoList = document.getElementById("todo-list"); const toDoInput = toDoForm.querySelector("input"); let toDos=[]; const ..