We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
functionfactorial(n){if(n===0){return1;}elseif(n<0){return"No factorial for negative numbers";}elseif(n>0){letfact=1;for(leti=n;i>0;i--){fact=fact*i;}returnfact;}}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Day 1: Functions
You are viewing a single comment's thread. Return to all comments →