[Javascript] 연산자 우선순위

lilclown·2022년 6월 17일
0

Javascript

목록 보기
10/42
post-thumbnail
post-custom-banner

연산자 우선순위


순위기능연산자
1괄호()
2증감/논리 연산자not ++ -- !
3산술 연산자 곱셈* / %
4산술 연산자 덧셈+ -
5비교 연산자 대소< <= > >=
6비교 연산자 같음== === != !==
7논리 연산자and &&
8논리 연산자or
9대입 연산자= += -= *= /= %=

예제

let example = 1 + 2 * 3; //7
let example2 = (1 + 2) * 3; //9
let example3 = true === 1 < 0; //false
let example4 = true || (true && false); //true



Tomorrow better than today, Laugh at myself

- 출처 -

자바스크립트 연산자 우선순위 표 및 쉬운 예제 3가지

profile
Tomorrow better than today, Laugh at myself
post-custom-banner

0개의 댓글