■ Infinity/-Infinity/NaN을 사용하는 기본적인 방법을 보여준다.
▶ 예제 코드 (JAVASCRIPT)
1 2 3 4 5 |
console.log(10 / 0); // Infinity console.log(10 / -0); // -Infinity console.log(1 * 'string'); // NaN |
■ Infinity/-Infinity/NaN을 사용하는 기본적인 방법을 보여준다.
▶ 예제 코드 (JAVASCRIPT)
1 2 3 4 5 |
console.log(10 / 0); // Infinity console.log(10 / -0); // -Infinity console.log(1 * 'string'); // NaN |