Answers for "string to char array in javascript"

4

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);

// Result
// [ 'h', 'i', ' ', 't', 'h', 'e', 'r', 'e' ]
Posted by: Guest on October-25-2020
0

string charAt array js

var output = "Hello world!".split('');
console.log(output);
Posted by: Guest on December-27-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language