Junior — Senior
What will the console display after executing the code?
livecode
Task condition
Specify which values will be output to the console when running the following JavaScript fragment:
let counter = 10;
while (counter--) {
setTimeout(() => {
console.log(counter);
});
}