Skip to main content

Prefixes of data pills in the Data Tree Output

Comments

1 comment

  • Rajnish Kucheria

    In the Data Tree Output, the requirement for double quotes depends on the data type of the value. Here’s a breakdown:

     

    Prefix       Data type        Double quotes required?

    abc           String               Yes  

    object        Object             No  

    123            Integer            No  

    array          Array               No  

     

    Key rule:

    • Strings must be enclosed in double quotes (""), for example., "abc".
    • Objects, Integers, and Arrays do not require double quotes.
    • If you fail to use double quotes for strings, the code will throw a syntax error because the value won’t be interpreted as a valid string.
    0

Please sign in to leave a comment.