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']