You are reading a single comment by @DrAzzy and its replies. Click here to read the full conversation.
  • 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"]
    
About

Avatar for DrAzzy @DrAzzy started