일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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-full-page
- Firebase
- 최종프로젝트
- 9쪽이들
- redux
- CS
- 쓰레드
- router
- LAN 과 WAN
- typescript
- 닉네임보이게하기
- DoM
- react-router-dom
- S.A
- 프로세스
- 뒤집기
- 계층
- #kakaomap
- 상태변화감지
- 에러
- react
- useref
- 자바스크립트
- 비선형 자료구조
- lv.0
- 프로그래머스
- onAuthStateChanged
- 배열
- Toolkit
- 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..