Number

박현석·2022년 8월 17일
1

Javascript ES6+

목록 보기
6/88
post-thumbnail

let integer = 123; //정수
let negative = -123; // 음수
let double = 1.23; // 실수

let binary = 0b1111011; // 2진수
let octal = 0o173; // 8진수
let hex = 0x7b; // 16진수

console.log(0 / 123); // 0
console.log(123 / 0); // Infinity
console.log(123 / -0); // -Infinity
console.log(123 / 'text'); // NaN (Not a Number)

let bigInt = 1234567890045672334324324290n; 
// bigInt를 표현 할 때는 마지막에 n을 붙인다.
profile
선한 영향력을 주는 사람

0개의 댓글