Currently, I am dealing with an array:
itemSku = ["MY_SERVICE","SKU_A","SKU_B"];
When passing this value to a component in Angular, the type of itemSku is being identified as a string. This prevents me from performing array operations on it.
console.log(typeof itemSku);
*string*
I need to find a way to convert this back to an array without using jQuery but utilizing JavaScript, Ramda, or Lodash instead.