#100daysofcode
Read more stories on Hashnode
Articles with this tag
Slices are a powerful data structure in the Go programming language. They are dynamic-size arrays, which means that their size can be changed at...
Note: In Go, any executable code belongs to the main package. Hello world in go: ๐ package main import("fmt") func main(){ fmt.println("Hello...
REDUCE ACTIVITY IN LOOPS Each statement in a loop, including the for statement, is executed for each iteration of the loop. Bad: for (let i = 0; i <...