JavaScript Array toSource() Method



Description

Javascript array toSource() method returns a string representing the source code of the array. This method is supported by Mozilla.

Syntax

Its syntax is as follows −

array.toSource();

Here is the detail of parameters −

  • NA

Return Value

Returns a string representing the source code of the array.

Example


   
      JavaScript Array toSource Method
   
   
         
         
   

Output

Returned string is : ["orange", "mango", "banana", "sugar"]
javascript_arrays_object.htm
Advertisements