Introduction

JSON is an abbreviation for JavaScript Object Notation, a widely used data interchange format. JSON is an extremely useful data format and is used almost everywhere today.

Below are some data types supported by JSON by default in Go. The default encoded types are:


bool for boolean data.
string for strings.
float64 for numbers.
nil for null values.
                        
introduction.go