[solved] – Question 84985
Using Javascript, Write a function called “addTo” that will add a value to an array based on the position specified.
The function will accept three parameters, the array of values, the value to be entered, and a
string which identifies the position. The positions can be either ‘front’ or ‘back’. Invalid position values should throw an exception with an appropriate message. You are expected to use the appropriate methods of the array (list).
Expert Answer
OR

