Answers for "javascript str to arr"

14

string to array javascript

const str = 'Hello!';

console.log(Array.from(str)); //  ["H", "e", "l", "l", "o", "!"]
Posted by: Guest on April-29-2020
2

string to array javascript

const string = "Hello!";

console.log([...string]); // ["H", "e", "l", "l", "o", "!"]
Posted by: Guest on December-09-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language