前端知识点集锦
Posted 骑着代马去流浪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端知识点集锦相关的知识,希望对你有一定的参考价值。
50,打印 s型数字例如123654789......
//输入2,输出1,2,4,3
//输入3,输出1,2,3,6,5,4,7,8,9
function func(num)
var res = [];
for(let i = 0 ; i < num ; i ++)
let arr = [];
for(let j = 1 ; j <= num ; j ++)
i % 2 === 0 ? arr.push(num * i + j) : arr.unshift(num * i + j)
res.push(arr)
console.log(res)
func(4) //123654789
以上是关于前端知识点集锦的主要内容,如果未能解决你的问题,请参考以下文章