DEV Community

Cover image for How to Turn a String into an Array of Characters: 3 Ways to do so.
Islam Sayed
Islam Sayed

Posted on

How to Turn a String into an Array of Characters: 3 Ways to do so.

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);
Enter fullscreen mode Exit fullscreen mode

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

Oldest comments (1)

Collapse
 
eth2234 profile image
Ebrahim Hasan

omg haha