단항 더하기 연산자(+)는 피연산자 앞에 나와 피연산자로 평가되지만 아직 숫자로 변환되지 않은 경우 숫자로 변환하려고 시도합니다.
"" + 1 // 문자열변환을 이렇게 하는것과 비슷하게 +를 사용하여 숫자 변환을 할수 있다
const x = 1;
const y = -1;
console.log(+x);
// expected output: 1
console.log(+y);
// expected output: -1
console.log(+'');
// expected output: 0
console.log(+true);
// expected output: 1
console.log(+false);
// expected output: 0
console.log(+'hello');
// expected output: NaN
console.log(typeof "100");
// expected output: string
console.log(typeof +"100");
// expected output: number
Unary plus (+) - JavaScript | MDN
The unary plus operator (+) precedes its operand and evaluates to its operand but attempts to convert it into a number, if it isn't already.
developer.mozilla.org
'데일리 리포트 > Today I Learn' 카테고리의 다른 글
React Hook (useEffect) (0) | 2022.05.04 |
---|---|
Boilerplate (보일러 플레이트) (0) | 2022.03.21 |
테스트 방식의 종류 (0) | 2022.03.02 |
E2E 테스트 라이브러리 Cypress (0) | 2022.03.01 |
jsx 파일 import 시 파일명의 확장자의 유무는 무슨 차이인가? (0) | 2022.02.24 |
댓글