js string to array convert code example
Example 1: string to array javascript
const str = 'Hello!';
console.log(Array.from(str)); // ["H", "e", "l", "l", "o", "!"]
Example 2: string to array in js
Object.assign([], 'string').bold;
// (method) String.bold(): string