Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 코플릿
- 스프린트 리뷰
- HTML 태그 모음
- Splice
- global scope
- for of
- npm 설치
- for in
- JavaScript Runtime
- immutable
- 코딩게임
- 코드스테이츠 1일차
- package.json
- 2번째 페어
- TIL
- 호이스팅
- Bracket Notation
- supertest
- nvm 설치
- 슈도코드
- Jest
- foreach
- indexof
- includes
- dot notation
- local scope
- version control system
- javascript 기초
- node 설치
- testbuilder
Archives
- Today
- Total
목록코드스테이츠 1일차 (1)
Honey-Programming
문제풀기
[$-0. 변수] 01_declaration(변수 선언하기) `let` 키워드를 사용하여 `course`라는 변수를 선언 let course; [$-0. 변수] 02_assignment(변수에 값 할당) 선언되어 있는 변수 course에 문자열 "codestates"를 할당 let course; course = 'codestates'; [$-0. 변수] 03_expression(값의 표현) num1에 5를 할당하고, num2에 7을 할당한 후, result에 num1과 num2의 곱을 할당 let num1, num2, result; num1 = 5; num2 = 7; result = num1 * num2; [$-1. 함수] 01_getRunCatDistance(함수) TODO: 속력(speed), 시간(..
코드스테이츠/ALGORITHM
2020. 6. 16. 01:07