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 ...
What is The Spread Operator ? The Spread Operator in JavaScript is denoted by three consecutive dots (…) and it allows an iterable (like an array or a string) to be expanded into individual elements.