Arrays in Golang
Array
An array is a homogeneous (fix type) data structure and it has fixed length. The type of array can be anything like integers, string or self-defined type.
An items in an array can be accessed through their index, and starts with zero.
The nu...
gautamjha.hashnode.dev2 min read