90 <= score && score <= 100
엄격일치연산자 ===
: value 뿐만 아니라 type도 같아야 true 뜸&& (and 연산자)
: 좌항과 우항이 모두 참일 경우에만 참
t && t -> t
t && f -> f
f && t -> f
f && f -> f
|| (or 연산자)
: 좌항과 우항중에 하나만 참이어도 참
t || t -> t
t || f -> t
f || t -> t
f || f -> f
! (not연산자)
: Boolean값 역전
!t && !t -> f
!t && !f -> f
!f && !t -> f
!f && !f -> t
let x = 10, y = 10;
console.log(++x - 3); // x의 값을 우선 1 증가시킨 후에 3을 뺌. 8
console.log(y++ - 3); // 먼저 y에서 3을 뺀 후에 y의 값을 1 증가시킴. 7
출처
https://programmer-seva.tistory.com/8
https://m.blog.daum.net/hsjeong106/55
https://www.slideshare.net/circulus_official/2startup-javascript
https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=asd7979&logNo=30111806961
http://tcpschool.com/javascript/js_operator_incAndDec