Examlex

Solved

What Is the Effect of the Join Statement in the Following

question 1

Multiple Choice

What is the effect of the join statement in the following code
Var theArray1 = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ];
Var theArray2 = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ];
Var value = theArray1.join( " " ) ;


Definitions:

Related Questions