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( " " ) ;
A) The join method will concatenate the values of theArray2 to theArray1.
B) The join method will concatenate the values of theArray1 to theArray2.
C) The join method will create a string from the values in theArray1.
D) The join method will create a string with the values of theArray2 concatenated to the values of theArray1.
Correct Answer:

Verified
Correct Answer:
Verified
Q2: Pass-by- _ is the method of passing
Q3: Which of the following is an illegal
Q4: What would the browser output if the
Q5: What does the following code do<br>For (
Q6: Which of the following is the proper
Q7: In JavaScript, numbers and boolean values are
Q8: The first statement below _ the array
Q9: _ are data structures consisting of related
Q10: Which of the following is the proper
Q11: By default, the JavaScript sort method uses