const factorial = n => n <= 1 ? 1 : n * factorial(n - 1); // Examples factorial(2); // 2 factorial(3); // 6