천진난만 코딩 스토리

8. 연산자 (+ if else) 본문

노마드코더/JavaScript 기초

8. 연산자 (+ if else)

Wisdom_1104 2023. 1. 1. 20:32

=== : A===B / A가 B라면

!== : A!==B / A가 B가 아니라면

$$ :  and

|| : or

 

-if else-

if문 (조건)에 해당하지 않는다면 if else안의 코드를 실행.

(else 전에 사용하는 또 다른 조건문)

 

 

 

예제 코드)

const age = parseInt(prompt("how old are you?"));
if (isNaN(age) || age < 0){
	console.log("write a real age");
}
if else (age < 18) {
	console.log ("You are too young");
}
else (age > 18) {
	console.log "You can drink");
}

-1 => write a real age


5 => You are too young

 

30 => You can drink

 

 

 

 

 

'노마드코더 > JavaScript 기초' 카테고리의 다른 글

10. Event  (0) 2023.01.02
9. Document Object  (0) 2023.01.02
7. Function (3)+if, else  (0) 2023.01.01
6. Function (2)  (0) 2023.01.01
5. Function (1)  (0) 2023.01.01