We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
데이터베이스가 없어도 데이터를 저장할 수 있는 방법이 localStorage입니다. 데이터를 (key: value) 쌍으로 저장할 수 있으며 새로고침을 해도 데이터가 날라가지 않습니다!
자바스크립트 튜토리얼 localStorage
HTML과 CSS는 진짜 진짜 간단하게 구성했습니다!
6w ├── index.html ├── main.js ├── reset.css ├── study │ ├── index.html │ ├── main.js │ └── style.css └── style.css
Main Page에서 Study Card를 클릭했을 때, 해당 카드의 정보들을 localStorage에 저장하고 /study 로 이동해서, localStorage에 담긴 정보들을 보여줄 수 있게 구현해주세요!
즉 카드를 클릭했을 때
이 실행되어야 합니다.
그리고 /study 에서는 localStorage.getItem으로 정보를 가져와서 뿌려주면 되겠죠?
Javascript에서 아래의 코드를 실행하면 결과가 무엇일까요?
console.log(1 + '1');
정답은 놀랍게도 '11' 입니다.
이처럼 Javascript는 type에 대해 굉장히 느슨하기 때문에 예기치 못한 에러가 발생할 수 있습니다.
이를 방지하기 위해 사용하는 것이 Typescript입니다! Typescript로 type과 관련된 error를 잡아내고 Javascript로 컴파일해서 사용하면 훨씬 안전하겠죠?
코딩애플 타입스크립트 타입스크립트 핸드북
npm init -y npm i typescript -D
{ "compilerOptions": { "allowJs": true, "target": "ES5", "outDir": "./dist", "moduleResolution": "Node", "lib": ["ES2015", "DOM", "DOM.Iterable"] }, "exclude": ["node_modules", "dist"], "strict": true, "strictNullChecks": true, "strictFunctionTypes": true, "strictBindCallApply": true, "strictPropertyInitialization": true, "noImplicitThis": true, "alwaysStrict": true }
npx tsc main.ts study/main.ts
폴더 구조는 다음과 같습니다
6w ├── node_modules ├── index.html ├── main.js ├── main.ts ├── package-lock.json ├── package.json ├── reset.css ├── study │ ├── index.html │ ├── main.js │ ├── main.ts │ └── style.css ├── style.css └── tsconfig.json
The text was updated successfully, but these errors were encountered:
manamana32321
jaehoshin123
MexicoHamburger
B0XERCAT
chaeyeon03
Ahnsaeyeon
No branches or pull requests
localStorage / Typescript
데이터를 임시로 저장할 수 있는 localStorage와
Javascript에 type을 입힌 Typescript에 대해 알아봅시다!
1. localStorage
데이터베이스가 없어도 데이터를 저장할 수 있는 방법이 localStorage입니다.
데이터를 (key: value) 쌍으로 저장할 수 있으며
새로고침을 해도 데이터가 날라가지 않습니다!
필수 공부 자료
자바스크립트 튜토리얼 localStorage
실습 과제
Study Detail 페이지를 만들어 봅시다!
Issue 번호가 10번인걸 이용해서 브랜치 생성해주세요!
HTML과 CSS는 진짜 진짜 간단하게 구성했습니다!
위와 같이 study/index.html로 Detail Page는 하나만 만들어서 공통으로 사용합니다!
Main Page에서 Study Card를 클릭했을 때, 해당 카드의 정보들을 localStorage에 저장하고
/study 로 이동해서, localStorage에 담긴 정보들을 보여줄 수 있게 구현해주세요!
즉 카드를 클릭했을 때
이 실행되어야 합니다.
그리고 /study 에서는 localStorage.getItem으로 정보를 가져와서 뿌려주면 되겠죠?
2. Typescript
Javascript에서 아래의 코드를 실행하면 결과가 무엇일까요?
정답은 놀랍게도 '11' 입니다.
이처럼 Javascript는 type에 대해 굉장히 느슨하기 때문에 예기치 못한 에러가 발생할 수 있습니다.
이를 방지하기 위해 사용하는 것이 Typescript입니다!
Typescript로 type과 관련된 error를 잡아내고 Javascript로 컴파일해서 사용하면 훨씬 안전하겠죠?
필수 공부 자료
코딩애플 타입스크립트
타입스크립트 핸드북
실습 과제
.js로 작성한 파일을 .ts로 바꾸고 type을 입혀주세요!
type과 interface를 이용해서 정적타입을 입혀주세요!
폴더 구조는 다음과 같습니다
The text was updated successfully, but these errors were encountered: