DEV Community

Cover image for String to character array
Christopher Glikpo  ⭐
Christopher Glikpo ⭐

Posted on

String to character array

Converts a string to an array of characters.

  • Use the spread operator (...) to convert the string into an array of characters.
const toCharArray = string => [...string];

toCharArray('Glikpo'); // ['G', 'l', 'i', 'k', 'p', 'o']
Enter fullscreen mode Exit fullscreen mode

Top comments (0)