Create Copy Of The Given Array (myArray) Using Spread Operator
Create Copy Of The Given Array (myArray) Using Spread Operator Input This input will a single containing an array Output The output should be a single line containing an array with the values of myArray Sample Input [ ‘x’ , ‘y’, ‘z’] Sample Output [ ‘x’, ‘y’, ‘z’ ] Code