PinnedHow to Master Go Maps in 10 MinutesHello , 🔵 welcome to this blog post about maps in Go language. In this post, I will explain what maps are, how to create and use them, and some tips and tricks to make the most out of them. Let’s get started! What are maps? Maps are a collection of ...May 27, 2023·4 min read
Go Get GoingNote: In Go, any executable code belongs to the main package. Hello world in go: 🚀 package main import("fmt") func main(){ fmt.println("Hello world") } Go Statements: 🧾 Hitting the Enter key adds ";" to the end of the line implicitly (does not s...May 12, 2023·2 min read
Simple Performance tips for JSREDUCE 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 < arr.length; i++) { Better Code: let l = arr.length; for (let i = 0; i < l; i++) { Reduce DOM size...May 8, 2023·1 min read