Hacker News new | ask | show | jobs
by eterm 3719 days ago
So this

{

  foo:one,

  bar:two
}

Parses to "one," because it is a quoteless string?

What about true and false, is false the boolean constant or a unquoted string "false".

1 comments

I posted this in another thread here, but it's documented in the linked page:

  > A value that is a number, true, false or null in JSON is parsed as a value.
  > E.g. '3' is a valid number while '3 times' is a string.