Contacts
I’m a beginner front-end developer with an interest in full-stack development. I’m studying and working as a programmer at university. I’m passionate about creating web applications and am constantly developing my skills. I’m open to new projects and collaboration opportunities.
const factorial = (function() {
return function(n) {
if (n === 0 || n === 1) {
return 1;
}
return n * factorial(n - 1);
};
})();
console.log(factorial(5));
}