What are natively supported JSON types?

devquora
devquora

Posted On: Feb 22, 2018

 

Following data types are natively supported in JSON.
  • Numbers: Integer, float or Double
  • String: string of Unicode characters, must be rapped into double quotes “”
  • Boolean: True or false
  • Array: ordered list of 0 or more values
  • Objects : An unordered collection key/ value pairs
  • Null: An Empty value

Read Latest Jquery interview questions

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    JSON Interview Questions

    What is JSON? For what is used for?

    JSON (JavaScript Object Notation) is a data storage and communication format based on key-value pair of JavaScript obje..

    JSON Interview Questions

    How to convert Javascript objects into JSON?

    JSON.stringify(value); is used to convert Javascript objects into JSON.Example Usage: var obj={"website":"Onlineint..

    JSON Interview Questions

    List types Natively supported by JSON?

    JSON supports Objects, Arrays, Primitives (strings, numbers, boolean values (true/false), null) data types...