其他分享
首页 > 其他分享> > JS,三道基础题

JS,三道基础题

作者:互联网

第一题,打印1到100的和

let k =0;

for(let i =1;i<=100;i++){

     k=i+k

}

console.log(k);

第二题,打印15的阶层

let str='15'

let k=15;

for(let i=14;i>0;i-- ){

      k=k+i

      str  += ` +${i}`// 此处的 `,为sec下面的符号

}

console.log(str+ '='+k);

3,交替打印26个大写字母和小写字母(unicode码)

for(let i =0;i<26;i++){

console.log(String.fromCharCode(65+i));

//输出A-Z  26个大学字母

console.log(String.fromCharCode(97+i));

//输出a-z  26个小写字母

}

!!!方法多种多样,并非单一,动脑动手,此,可解难题。(处用的是JS循环)。

There are a thousand Hamlets in a thousand people's eyes

一千个人眼中就有一千个哈姆雷特---莎士比亚!

标签:26,console,log,三道,基础,JS,let,str,15
来源: https://blog.csdn.net/qq_58153299/article/details/122724029