Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 옵셔널
- DelayInput
- next.js
- textinput
- reactnavigation
- client-side-rendering
- ios
- SWIFT
- 비반환함수
- 리액트네이티브
- ReactNative
- 약타입언어
- lineending
- multiline
- 데이터타입함수
- 중첩함수
- JavaScript
- 17681
- replacingOccurrences
- reactnative android
- Server-Side-Rendering
- beforePopState
- switch구문
- 약타입
- 프로그래머스
- 스위프트
- 나를부르는숲
- 동적언어
- 72410
- 함수형프로그래밍
Archives
- Today
- Total
목록후위연산자 (1)
으니의 개발로그
[JavaScript] num++와 ++num의 차이점 (전위연산자, 후위연산자)
let num = 1; const x = num++ + 1; console.log(x, num) num = 1; const y = ++num + 1; console.log(y, num) num = 1; const z = num-- + 1; console.log(z, num) num = 1; const w = --num + 1; console.log(w, num) 퀴즈! 위의 코드를 실행했을때 x, y의 값과 z, w의 값은 같을까? 또한, 콘솔창에는 어떤 값이 출력될까? 이 글을 다 읽으면 정답을 알 수 있다! 먼저, 증감 연산자란 무엇일까? 증감 연산자는 전위 연산자 와 후위 연산자 로 나눌 수 있다. ++num 또는 --num 와 같이 증감 연산자가 앞에 붙으면 앞 전(前)을 사용해 전위 연산자라고 ..
Front-end/JavaScript
2023. 2. 15. 14:21