Conditional & loop
Conditionals 조건문
if - else 문
if(condition){
// condition === true exe
} else {
// condition === false exe
}
- 조건 결과 값은
boolean
타입
Loop 반복문
while 문
while (true) { console.log("Hi"); }
while (condition) { code ; }
- 조건이 맞으면 틀릴 때까지 계속 반복 실행
- 관습적으로
i
변수에 반복 횟수 변수 역할을 시킨다.
Boolean 논리 자료형
true
- defined
const a = true;
// true
- 1
- 참
false
- defined
const a = false;
// false
- 0
- 거짓
null
- defined
const a = null;
// null
- “아무것도 없음” 이라는 값
- 변수 안에 값이 없다는걸 명시
undefined
let a;
// undefined
- 값이 정의 되지 않은 변수
- 값이 없는 공간
Author And Source
이 문제에 관하여(Conditional & loop), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@iseon_u/JavaScript-Conditional-loop
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
if(condition){
// condition === true exe
} else {
// condition === false exe
}
boolean
타입while 문
while (true) { console.log("Hi"); }
while (condition) { code ; }
- 조건이 맞으면 틀릴 때까지 계속 반복 실행
- 관습적으로
i
변수에 반복 횟수 변수 역할을 시킨다.
Boolean 논리 자료형
true
- defined
const a = true;
// true
- 1
- 참
false
- defined
const a = false;
// false
- 0
- 거짓
null
- defined
const a = null;
// null
- “아무것도 없음” 이라는 값
- 변수 안에 값이 없다는걸 명시
undefined
let a;
// undefined
- 값이 정의 되지 않은 변수
- 값이 없는 공간
Author And Source
이 문제에 관하여(Conditional & loop), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@iseon_u/JavaScript-Conditional-loop
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
true
- definedconst a = true;
// true
false
- definedconst a = false;
// false
null
- definedconst a = null;
// null
undefined
let a;
// undefined
Author And Source
이 문제에 관하여(Conditional & loop), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@iseon_u/JavaScript-Conditional-loop저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)