I think my solution is correct:
// Only change code below this line
function countdown(n) {
if (1 > n) {
return [];
} else {
let count = countdown(n - 1);
count.push(n);
return count.reverse();
}
}
// Only change code above this line
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36
Challenge: Basic JavaScript - Use Recursion to Create a Countdown
Link to the challenge: