Javascript:在页面上打印1,000,000" o" s

时间:2017-03-08 05:51:59

标签: javascript loops

我一直试图在页面上打印1,000,000" o"但它一直在崩溃。是否有一种快速简便的方法在不使用图像的情况下打印1,000,000张

2 个答案:

答案 0 :(得分:2)

使用String.prototype.repeat



const n = 100; // set this to 1000000 later
document.write('o'.repeat(n))




Array.prototype.fill



const n = 100; // set this to 1000000 later
document.write(new Array(n).fill('o').join(''))




答案 1 :(得分:1)

更快

const n = 1000000; // set this to 1000000
document.write("o".repeat(n))