Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

javascript factorial

function factorial(n) {
  if (n < 0) return;
  if (n < 2) return 1;
  return n * factorial(n - 1);
}
Comment

Factorial function javascript

function getFact(number) {
    let fact = 1;
    for (var i = 1; i <= number; i++) {
        fact = fact * i;
    }
    return fact;
}
console.log(getFact(5))
//Output: 120
Comment

factorial function javascript

    function factorial(n) {
        if (n > 1) {
            return n * factorial(n - 1);
        }
        return 1;
    }
Comment

factorial of number js

const factorialize = num => {
  if (num === 0 || num === 1) {
    return 1;
  }
  for (let i = num - 1; i >= 1; i--) {
    num *= i;
  }
  return num;
};
Comment

factorial javascript

num = 5
factorialn = 1
function factorial() {
    for (i = 1; i <= num; i++) {
        factorialn *= i
    }
}
factorial()
console.log(factorialn)  
Comment

Program for factorial of a number in javascript

<script>
// Javascript to find factorial
// of given number
 
// function to find factorial
// of given number
function factorial(n) {
  if (n == 0) return 1;
  return n * factorial(n - 1);
}
 
// Driver Code
let num = 5;
document.write("Factorial of " + num + " is " + factorial(num));
 

</script>
Comment

Factorial in javascript

function factorial(n) {
    if (n == 1) {
        return 1;
    }
    return n * factorial(n - 1);
}
console.log(factorial(6));
//Output: 720
Comment

factorial javascript

// Simple arrow function solution
var factorial = n => (n <= 0) ? 1: n * factorial(n - 1);
Comment

factorialization in javascript

function factorialize(num) {
  var factode = 1;
  for(var i = num; i > 0; i--) {
    factode *= i;
    
  }
  return factode;
}
  

factorialize(5);
Comment

factorial javascript function

function factorialize(num) {
  if(num < 2) return 1;
  return num *= factorialize(num - 1);
}
Comment

how to return a factorial in javascript

function factorial(n) {
    if (n == 1) {
        return 1;
    }
    return n * factorial(n - 1);
}
console.log(factorial(6));
Comment

javascript factorial of a number

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

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

js how to calculate factorial

// @ts-check
/* ---------------------------------- using a loop --------------------------------- */
(() => {
  function factorial(n) {
    if (n < 0) return;

    let result = 1;

    for (let i = 2; i <= n; i++) {
      result *= i;
    }

    return result;
  }

  console.log(factorial(4)); // => 24
  console.log(factorial(0)); // => 1
  console.log(factorial(-2)); // => undefined
})();

/* ------------------------------ recursive way----------------------------- */
(() => {
  function factorial(n) {
    if (n < 0) return;
    if (n == 0) return 1;

    return n == 1 ? 1 : n * factorial(n - 1);
  }

  console.log(factorial(5)); // => 120
  console.log(factorial(0)); // => 1
})();
Comment

JavaScript Find Factorial

// program to find the factorial of a number
function factorial(x) {

    // if number is 0
    if (x === 0) {
        return 1;
    }

    // if number is positive
    else {
        return x * factorial(x - 1);
    }
}
const num = 3;
// calling factorial() if num is non-negative
if (num > 0) {
    let result = factorial(num);
    console.log(`The factorial of ${num} is ${result}`);
}
Comment

factorial program in javascript

function fact(N){
  if(N <= 1){
  	return "1";
  }
  else
  {
    return N * fact(N-1);  
  }
}

fact(5);
Comment

Factorial Function Javascript

var factorial = 1;
function myfact(fact) {
    for (let i = 1; i <= 5; i++) {
        factorial = factorial * i;
    }
    return factorial;
}
console.log(myfact(factorial))
 // Output: 120
Comment

how to write a factorial function in javascript

function factorial(num){
	return num === 1 ? 1 : num * factorial(num - 1) 
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: to htmlhow can i add the list in javascript 
Javascript :: react fontawesome exchange icon 
Javascript :: html get color gradient percentage 
Javascript :: javascript find ip and information 
Javascript :: setting up a react environment 
Javascript :: days.js 
Javascript :: how do you calculate what percentage a number is of another number 
Javascript :: sort array by field 
Javascript :: vue js tutorial csv import 
Javascript :: unexpected token < in json at position 0 coinbase 
Javascript :: discord.js embed 
Javascript :: delete div based on select 
Javascript :: fetch not working javascript 
Javascript :: swap first and last element in array javascript 
Javascript :: node js package nodemon error 
Javascript :: sum all odd in binary search tree recursion javascript 
Javascript :: react-google-invisible-recaptcha 
Javascript :: JSON to Ruby Hash Parser 
Javascript :: display form input on console jquery 
Javascript :: js no new line console.log 
Python :: how to avoid deprecation warning in python 
Python :: drop last row pandas 
Python :: max columns in python 
Python :: check python 32 or 64 
Python :: random number python 
Python :: create requirements.txt conda 
Python :: resize imshow opencv python 
Python :: python get line number of error 
Python :: NAN values count python 
Python :: python delete directory if exists 
ADD CONTENT
Topic
Content
Source link
Name
3+5 =