Answers for "split a string into an array of characters"

1

split a string into an array of characters

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 June-02-2021

Code answers related to "split a string into an array of characters"

Browse Popular Code Answers by Language