当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript fill()用法及代码示例


fill() 是 JavaScript 中的预定义函数,用于用静态值填充数组的所有元素。

例:

<html>
<head>
<title>JavaScipt Example</title>
</head>

<body>
	<script>
		//array
		var cities = ["New Delhi", "Mumbai", "Chennai", "Banglore"];
		//printing the values
		document.write("The cities are:" + cities);
		document.write("<br>");
		
		//filling all elements with a defualt city "Pune"
		cities.fill("Pune");
		//printing the values
		document.write("The cities are:" + cities);
		document.write("<br>");		
		
	</script>
</body>
</html>

输出

The cities are:New Delhi,Mumbai,Chennai,Banglore
The cities are:Pune,Pune,Pune,Pune


相关用法


注:本文由纯净天空筛选整理自 fill() function with example in JavaScript。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。