package
0.0.0-20241128200316-6d5241813ae7
Repository: https://github.com/vishalvivekm/gopher.git
Documentation: pkg.go.dev
# README
JavaScript Object Notation - a collection of key( always a string) : value pairs || an orderly set of values Go: map || slices
- functions in
encoding/json
package lets us encode / decode JSON maps and slices
serialization
: encoding to json format
- json.Marshal()
- json.MarshalIndent()
any
is alias to an empty interface{}