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