“JavaScript Infinity” Code-Antworten

Infinity JavaScript

const maxNumber = Math.pow(10, 1000); // max positive number

if (maxNumber === Infinity) {
  console.log('Let\'s call it Infinity!');
}

console.log(1 / maxNumber);
Undefined

JavaScript Infinity

const a = 2 / 0;
console.log(a); // Infinity

const a = -2 / 0;
console.log(a); // -Infinity
SAMER SAEID

Ähnliche Antworten wie “JavaScript Infinity”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen