I think the title is self explanatory. Is it possible to only push the unique char from a string into the array using split() methode? Example : from string "javascript", I want an output array to be :
["j", "a", "v", "s", "c", "r", "i", "p", "t"]
Thank you!