No, that's an empty string. A " separator would be '"' (a double quote enclosed in single quotes)
Correct behavior is to split a word up into letters like Sacha said - try it in any js console.
'HELLO'.split(''); ["H", "E", "L", "L", "O"]
@DrAzzy started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
No, that's an empty string. A " separator would be '"' (a double quote enclosed in single quotes)
Correct behavior is to split a word up into letters like Sacha said - try it in any js console.