“Big Numbers Fatorial JS” Respostas de código

Big Numbers Fatorial JS

var factorial = function(n){n=BigInt(n);return (n==0n||n==1n)?1n:factorial(n-1n)*n;}
//can be print this way
console.log( factorial(n) );
HxnRxa

JavaScript Fatorial de um número

const factorial = n => n <= 1 ? 1 : n * factorial(n - 1);

// Examples
factorial(2);   // 2
factorial(3);   // 6
Batman

Respostas semelhantes a “Big Numbers Fatorial JS”

Perguntas semelhantes a “Big Numbers Fatorial JS”

Mais respostas relacionadas para “Big Numbers Fatorial JS” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código