JS JSONJSON Data TypesJavaScript JSON Data TypesJSON Data TypesJSON (JavaScript Object Notation) is a lightweight data-interchange format that is easy for humans to read and write and easy for machines to parse and generate.JSON supports various data types, including:JSON StringA sequence of Unicode characters enclosed in double quotation marks.Example:{ "name":"John"}JSON NumberA numeric value represented as a decimal or exponential notation.Examples:{ "age":20}JSON BooleanA logical value that can be either true or false.Examples:{ "isMaried":false}JSON NullA special value that represents null or no value.Example:{ "middleName":null}JSON ObjectAn unordered collection of key/value pairs enclosed in curly braces. Example:{ "name": {"John", "age": 20}}JSON ArrayAn ordered collection of values enclosed in square brackets.Example:{ "children": ["Jane", "Jonny"]}