Contact: aviboots(AT)netvision.net.il
41,692 questions
54,362 answers
573 users
let n = 5; for (let i = n; i >= 0; i--) { process.stdout.write(i + " "); } /* run: 5 4 3 2 1 0 */