Latest Articles
Golang length of map [2 Easy Methods]
use two different methods to get golang length of map. Using len() function or iterate over the map elements and count each occurence to get the length.
Install phpMyAdmin on Rocky Linux 9 [Step-by-Step]
Step by step instructions to install phpMyAdmin on Rocky Linux 9 using 2 different methods.
Golang iterate over Array [2 Methods]
There are two possible methods in golang to iterate over an array using for loop with range function or with len(array) function
Golang print type of an object [SOLVED]
In this tutorial we covered golang print type of an object using string formatting, go reflect package and type assertions
Golang Trim Strings [Left, Right, Space, Suffix, Prefix]
golang trim strings function using strings.Trim(), strings.TrimLeft(), strings.TrimRight(), strings.TrimSpace(), string.TrimSuffix(), strings.TrimPrefix()
