Slice

What is slice in Go Slice is another data structure in Go. Slice stores its elements in contiguous or adjacent…

6 Min Read

Zero value

Zero value of a variable in Golang refers to the value it contains till it is not explicitly initialized. Zero…

1 Min Read

Arrays

What is a Go array Array in Golang is a data structure that is used to store a collection of…

3 Min Read

Loops

A loop is used for repeated execution of a code block. The code block may contain one or more statements….

3 Min Read

Constants

As the name suggests, a constant is one that never changes. Constants in Golang are values that do not change….

1 Min Read
Exit mobile version