node string to chars with spaces in between

Solutions on MaxInterview for node string to chars with spaces in between by the best coders in the world

showing results for - "node string to chars with spaces in between"
Youna
12 Jan 2019
1let str = 'hello'
2str.split('').join(' '); // "h e l l o"