Course · Section 10: A Closer Look at Functions · Lecture 135: Default Parameters
Implement `factorialLoop(n)` returning `n!` using an iterative loop (no recursion).
+ 1 hidden test run on Submit.
An iterative product from 2 to n computes n! without recursion.
Run your code to see results.