JavaScript Array fill() Method Last Updated : 15 Jul, 2024 Comments Improve Suggest changes Like Article Like Report The JavaScript Array fill() Method fills a given range of array elements with the given value. This method is used to manipulate the existing array according to our needs.Syntax:arr.fill(value,start,end)Parameters:Value: Value to be filled.Start: Start index (included) and its default value is 0.End: End index (excluded) and its default index is this.length.Return value: It returns the modified array.Example 1: In this example, we will fill an array with 0 starting from an index at 2 till the end index of 4. JavaScript // Input array contain some elements. let array = [1, 2, 3, 4]; // Here array.fill function fills with 0 // from position 2 till position 3. console.log(array.fill(0, 2, 4)); Output[ 1, 2, 0, 0 ] Example 2: In this example, we will fill the array with 9 starting from an index at 2 till the end index of the array. JavaScript // Input array contain some elements. let array = [1, 2, 3, 4, 5, 6]; // Here array.fill function fill with // 9 from position 2 till end. console.log(array.fill(9, 2)); Output[ 1, 2, 9, 9, 9, 9 ] Example 3: In this example, we will fill the array completely with 6. This is done by not giving the start and end index to the fill method. JavaScript // Input array contain some elements. let array = [1, 2, 3, 4]; // Here array.fill function fill with // 6 from position 0 till end. console.log(array.fill(6)); Output[ 6, 6, 6, 6 ] We have a complete list of Javascript Array methods, to check those please go through this Javascript Array Complete reference article.Supported Browsers:The browsers supported by JavaScript Array join() method are listed below:Google Chrome 1.0 Microsoft Edge 12Mozilla Firefox 1.0Safari 1 Opera 4 Comment More info K Kanchan_Ray Follow Improve Article Tags : Misc JavaScript Web Technologies javascript-array JavaScript-Methods +1 More Explore JavaScript BasicsIntroduction to JavaScript4 min readVariables and Datatypes in JavaScript6 min readJavaScript Operators5 min readControl Statements in JavaScript4 min readArray & StringJavaScript Arrays7 min readJavaScript Array Methods7 min readJavaScript Strings6 min readJavaScript String Methods9 min readFunction & ObjectFunctions in JavaScript5 min readJavaScript Function Expression3 min readFunction Overloading in JavaScript4 min readObjects in Javascript4 min readJavaScript Object Constructors4 min readOOPObject Oriented Programming in JavaScript3 min readClasses and Objects in JavaScript4 min readWhat Are Access Modifiers In JavaScript ?5 min readJavaScript Constructor Method7 min readAsynchronous JavaScriptAsynchronous JavaScript2 min readJavaScript Callbacks4 min readJavaScript Promise4 min readEvent Loop in JavaScript4 min readAsync and Await in JavaScript2 min readException HandlingJavascript Error and Exceptional Handling6 min readJavaScript Errors Throw and Try to Catch2 min readHow to create custom errors in JavaScript ?2 min readJavaScript TypeError - Invalid Array.prototype.sort argument1 min readDOMHTML DOM (Document Object Model)9 min readHow to select DOM Elements in JavaScript ?3 min readJavaScript Custom Events4 min readJavaScript addEventListener() with Examples9 min readAdvanced TopicsClosure in JavaScript4 min readJavaScript Hoisting6 min readJavascript Scope3 min readJavaScript Higher Order Functions7 min readDebugging in JavaScript4 min read Like