[Intermediate] 산술, 할당 연산자

OROSY·2021년 3월 20일
0

JavaScript

목록 보기
11/53
post-thumbnail

1. 산술 연산자(Arithmetic Operator)

1) 사칙연산

console.log(1 + 2)   // 3
console.log(5 - 7)   // -2
console.log(3 * 4)   // 12
console.log(10 / 2)  // 5

2) 나머지 연산자

console.log(7 % 5)  // 2

2. 할당 연산자(Assignment Operator)

1) 등호(Equal sign)

Equal sign(=)은 '같다'라는 뜻이 아닌 변수에 값을 '할당'한다는 의미이다.

let a = 2

console.log(a) // 2

2) 다른 예

let a = 2
a += 1 
// a = a + 1 위 코드와 같은 의미이다.

console.log(a) // 3

3) 다양한 할당 연산자

[출처] https://www.w3schools.com/js/js_assignment.asp

profile
Life is a matter of a direction not a speed.

0개의 댓글