当前位置:
首页 >
前端技术
> javascript
>内容正文
javascript
用JavaScript中的示例进行fill()函数
生活随笔
收集整理的这篇文章主要介绍了
用JavaScript中的示例进行fill()函数
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
fill() is a predefined function in JavaScript, which is used to fill all elements of an array with a static value.
fill()是JavaScript中的预定义函数,用于用静态值填充数组的所有元素。
Example:
例:
<html> <head> <title>JavaScipt Example</title> </head><body><script>//arrayvar cities = ["New Delhi", "Mumbai", "Chennai", "Banglore"];//printing the valuesdocument.write("The cities are: " + cities);document.write("<br>");//filling all elements with a defualt city "Pune"cities.fill("Pune");//printing the valuesdocument.write("The cities are: " + cities);document.write("<br>"); </script> </body> </html>Output
输出量
The cities are: New Delhi,Mumbai,Chennai,Banglore The cities are: Pune,Pune,Pune,Pune翻译自: https://www.includehelp.com/code-snippets/fill-function-with-example-in-javascript.aspx
总结
以上是生活随笔为你收集整理的用JavaScript中的示例进行fill()函数的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: java程序服务不能启动不了_JavaS
- 下一篇: JavaScript | 演示函数中按值