Here are 3 different ways to convert a string into an array of its characters in javascript.
const str = 'Hello';
//1. Using split() method
const arr1 = str.split('');
//2. Using spread operator
const arr2 = [...str];
//3. Using Array.from() method
const arr3 = Array.from(str);
Follow me on:
👉Instagram: https://www.instagram.com/islamcodehood
👉Twitter: https://twitter.com/islam_sayed8
👉Facebook page: https://www.facebook.com/Codehood-111...
👉Dev: https://dev.to/islam
Top comments (1)
omg haha