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