일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- NumPy
- 정보처리기사 c언어
- aws jupyter notebook
- Join
- Matplotlib
- 알고리즘스터디
- 데이터시각화
- dataframe
- Algorithm
- 파이썬
- 프로그래머스
- 자료구조
- javascript
- python
- programmers
- Stack
- 선그래프
- String Method
- type hint
- MySQL
- 백준
- queue
- 코딩테스트
- 알고리즘 스터디
- 가상환경
- Selenium
- 노마드코딩
- pandas
- openCV
- 알고리즘
- Today
- Total
목록자바스크립트 (2)
조금씩 꾸준히 완성을 향해
입력받은 username을 저장하고 지속적으로 보여주기 위해서 Web API인 Local Storage를 사용해 보자. Local Storage는 브라우저에 값을 저장하고 가져다 쓸 수 있게 해주는 유용한 API이다. https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage Window.localStorage - Web APIs | MDN The localStorage read-only property of the window interface allows you to access a Storage object for the Document's origin; the stored data is saved across browser sessi..
JavaScript의 데이터 타입은 크게 Primitive type, Object type 두 카테고리로 나눌 수 있다. 1. Primitive Type : 하나의 아이템을 나타낼 때 쓰인다. : number, string, boolean, null, undefined, symbol - Number const count = 17; //integer 정수 const size = 17.1; //decimal 소수 console.log(`value: ${count}, type: ${typeof count}`); //value: 17, type: number console.log(`value: ${size}, type: ${typeof size}`); //value: 17.1, type: number const..