JavaScript Functions Practice Set || JavaScript Tutorial for Beginners - 70

preview_player
Показать описание
❤️ Thanks for supporting KhanamCoding!

❤️Source Code:

❤️Udemy Premium Courses:
🎓Enroll in courses with premium learning experience & support KhanamCoding!😃

❤️SOCIAL MEDIA
Рекомендации по теме
Комментарии
Автор



✔New Journey, new channel where you will learn tons of tips in Excel.

👉Facebook Account : Khaiser Khanam (excelhunar)

KhanamCoding
Автор

✔Udemy Courses:
🚀Registration system using PHP and MySQL

🚀Get access to full PHP CRUD project.

KhanamCoding
Автор

//10.Find Factorial of a number
console.log("10.Find Factorial of a number");
let num = 5;
function factorial(num) {
if (num === 0 || num === 1) {
return 1;
} else {
return num * factorial(num - 1);
}
}
console.log(factorial(num));

IamBinhod