

What does this program print?
Trace the program the way the computer would, then make your call before running anything.
const f = (n) => (n === 0 ? "" : f(n - 1) + n); console.log(f(3));


Trace the program the way the computer would, then make your call before running anything.
const f = (n) => (n === 0 ? "" : f(n - 1) + n); console.log(f(3));