You are viewing a single comment's thread. Return to all comments →
function factorial(num){ let result = 1; for (let x = 1; x<num+1 ;x++ ){ result = result * x } return result }
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 →