6 Min Read
3 different methods for substring in javascript
Substring means a portion of a string. Substring is extracted based on numeric indexes. This article will explain 3 different…
Publish article
Publish your own article.
6 Min Read
Slice
What is slice in Go Slice is another data structure in Go. Slice stores its elements in contiguous or adjacent…
1 Min Read
Zero value
Zero value of a variable in Golang refers to the value it contains till it is not explicitly initialized. Zero…
3 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….
1 Min Read
Constants
As the name suggests, a constant is one that never changes. Constants in Golang are values that do not change….