Open In App

JavaScript Array valueOf() Method

Last Updated : 13 Jul, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

The JavaScript Array valueOf() method in JavaScript is used to return the array. It is a default method of the Array Object. This method returns all the items in the same array. It will not change the original content of the array. It does not contain any parameter values. 

Syntax:

array.valueOf()

Parameters: This method does not accept any parameter. 

Return Value: It returns an Array. 

The below examples illustrate the JavaScript Array valueOf() Method:

Example 1: In this example, we will see the basic use of the Array valueOf() method.

Javascript




function func() {
 
    // Original array
    let array = ["GFG", "Geeks", "for", "Geeks"];
 
    // Checking for condition in array
    let value = array.valueOf();
    console.log(value);
}
func();


Output

[ 'GFG', 'Geeks', 'for', 'Geeks' ]

Example 2: In this example, we will show the use of valueOf method.

Javascript




const sub = ["DS", "Algo",
           "PHP", "JS", "OS"];
console.log(sub.valueOf());


Output

[ 'DS', 'Algo', 'PHP', 'JS', 'OS' ]

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 valueOf() Method are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera

We have a Cheat Sheet on Javascript where we covered all the important topics of Javascript to check those please go through Javascript Cheat Sheet-A Basic guide to JavaScript.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads