Add a space between characters in a String
javascript, string
Solution
"hello".split('').join(' '); // "h e l l o"
Problem
Possible Duplicate: String Manipulation - Javascript - I have a string: ``` hello ``` and I want to add a space between each character to give: ``` h e l l o ``` What is the best way to do this?