I am trying to work with an array that contains elements [ABC, QWE, XYZ]. How can I convert it to ['ABC', 'QWE', 'XYZ']?
When attempting to manipulate values within the current array, I encounter the following error:
ReferenceError: ABC is not defined
Does anyone have suggestions on the best way to achieve this?
Thank you!