Jsref Fill
# JavaScript fill() Method
[ JavaScript Array Object](#)
## Example
Fill an array with a fixed value:
```javascript
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.fill("");
The _fruits_ output will be:
,,,
[Try it Yourself Β»](#)
* * *
## Definition and Usage
The `fill()` method fills (or replaces) all elements of an array with a static value.
* * *
## Browser Support
The numbers in the table specify the first browser version that fully supports the method.
| Method | | | | | |
| --- | --- | --- | --- | --- | --- |
| fill() | 45.0 | 12.0 | 31.0 | 7.1 | 32.0 |
**Note:** The `fill()` method is not supported in Internet Explorer 11 and earlier versions.
* * *
## Syntax
```javascript
array.fill(value, start, end)
## Parameters
| Parameter | Description |
| --- | --- |
| _value_ | Required. The value to fill the array with. |
| _start_ | Optional. The index to start filling from. |
| _end_ | Optional. The index to stop filling at (default is _array_.length). |
## Technical Details
Returns: An Array
JavaScript Version: ECMAScript 6
## More Examples
## Example
Fill "" to the last two elements of the array:
```javascript
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.fill("", 2, 4);
The output will be:
Banana,Orange,,
[Try it Yourself Β»](#)
* * JavaScript Array Object](#)
YouTip