string simpul ke chars dengan spasi di antaranya

let str = 'hello'
str.split('').join(' '); // "h e l l o"
Smoggy Stag