javascript string to array of chars code example
Example 1: string to char array in javascript
const string = 'hi there';
const usingSplit = string.split('');
const usingSpread = [...string];
const usingArrayFrom = Array.from(string);
const usingObjectAssign = Object.assign([], string);
Example 2: string to char array javascript
const string = 'word';
string.split('');
[...string];
Array.from(string);
Object.assign([], string);
Example 3: convert string to array javascript
let myArray = str.split(" ");
Example 4: string charAt array js
var output = "Hello world!".split('');
console.log(output);