일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- DoM
- 계층
- onAuthStateChanged
- router
- 프로세스
- Firebase
- CS
- 심화프로젝트
- S.A
- #kakaomap
- useref
- typescript
- 배열
- 쓰레드
- 9쪽이들
- 비선형 자료구조
- lv.0
- react-router-dom
- redux
- 프로그래머스
- 뒤집기
- react-full-page
- 자바스크립트
- react
- 에러
- 상태변화감지
- Toolkit
- 최종프로젝트
- 닉네임보이게하기
- LAN 과 WAN
- Today
- Total
목록영어 코딩 (3)
행복한 딸기 🍓
If statement Notice that the condition should be enclosed in parentheses, followed by curly braces { }, where the block of code is written. if (condition) { // block of code } enclose [ 인크로스 ] : 둘러싸다 parenthese [ 퍼r렌데s시s ] : 괄호 If the condition is false, the block of code will not be executed: let purchase = 1400; if (purchase >= 1500) { console.log("Discount!") } // nothing also we can use any ..
The Boolean date types can only take the values true or false. let isActive = true; // 1 let isHoliday = false; // 0 let x = 7; console.log(x == 7) // true console.log(x != 8) // true console.log(x > 10) // false console.log(x = 7) // true console.log(x smaller than = smaller or equal to "Dave"); // false 💡comparison operators are used for evaluating whether an expre..