Languages
[Edit]
EN

JavaScript - convert string to character array

4 points
Created by:
Maison-Humphries
791

In this article, we would like to show you how to convert string to characters array in JavaScript.

1. Using String split() method

// ONLINE-RUNNER:browser;

var text = 'ABCD';
var array = text.split('');
console.log(array);

2. Using Array.from() method

// ONLINE-RUNNER:browser;

var text = 'ABCD';
var array = Array.from(text);
console.log(array);

3. Using Object.assign()

// ONLINE-RUNNER:browser;

var text = 'ABCD';
var array = Object.assign([], text);
console.log(array);

Alternative titles

  1. JavaScript - get character array from string
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Cross technology - convert string to character array

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join