This website collects cookies to deliver better user experience
assign()
Object
Hello!
// random string const str = "Hello!";
Object.assign()
[]
// random string const str = "Hello!"; // convert each characters in string to array const strArr = Object.assign([], str); console.log(strArr); // ["H", "e", "l", "l", "o", "!"]
strArr
21
0