运行 ❯
获取您
自身
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Arrays</h1> <h2>The fill() Method</h2> <p>fill() fills specified elements in an array with a value.</p> <p>Fill all array elements with "Kiwi":</p> <p id="demo"></p> <script> const fruits = ["Banana", "Orange", "Apple", "Mango"]; document.getElementById("demo").innerHTML = fruits.fill("Kiwi"); </script> <p>The fill() method is not supported in Internet Explorer.</p> </body> </html>