Code to go logo
Created using Figma
Use Cases
Contribute
How to split string into array of characters in JavaScript
Arrays
By Jad Joubran ·
Last updated Dec 16, 2017
const arrayOfChars = [..."hello world"];
['h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd']
Dec 16, 2017
1
Jad Joubran
See answer
1
Jad Joubran
Learn JavaScript step by step