RosettaCodeData/Task/Loops-Downward-for/JavaScript/loops-downward-for-1.js

2 lines
36 B
JavaScript

for (var i=10; i>=0; --i) print(i);