我一直试图在页面上打印1,000,000" o"但它一直在崩溃。是否有一种快速简便的方法在不使用图像的情况下打印1,000,000张?
答案 0 :(得分:2)
const n = 100; // set this to 1000000 later
document.write('o'.repeat(n))

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))