HackerRank Problem Linkarrow-up-right
JS Solution
function factorial(n) { return n ? n * factorial(n - 1) : 1; }
Last updated 4 years ago