Write a function to split a string and convert it into an array of words. e.g. string_to_array("Robin Singh") => ["Robin", "Singh"] string_to_array("I love arrays ...
Notifications You must be signed in to change notification settings *sting Convert string to array str.split() const str = "abc"; const arr = str.split("") // ["a","b ...