循环输出数字num 2020-11-09 本文已影响0人 南漂一枚 function fn(num) { for (let index = num; index >0; index--) { console.log(index) } } fn(10)