Mar 4, 2023
Learn to make GET and POST requests to external APIs in Golang
Oct 21, 2022
Learn two ways to find the type of a variable in Golang
Sep 19, 2022
Learn two ways to check if a map is empty in Golang
Sep 17, 2022
This tutorial is about getting a slice of keys from a map in golang
Sep 13, 2022
Convert a golang interface to a golang string using a built-in function
Sep 12, 2022
Remove an existing key from a map in Golang using a built-in delete function
Sep 11, 2022
Check if a string starts with a substring in Golang
Sep 9, 2022
Learn to exit from the main program when an error occurs inside the main func in golang
Aug 7, 2022
Learn to convert a float64 or float32 to a string in golang
Aug 3, 2022
Learn to convert a float64 or float32 to an int in golang
Sep 16, 2021
Learn to merge two slices of the same type in Go using a built-in function
Sep 6, 2021
Learn to initialize a new slice with initial values in Golang using a composite literal
Jul 31, 2021
Learn to check if a slice is empty in Golang using the len() method
Jun 28, 2021
Learn to check if a map contains a key in Golang
Jun 26, 2021
Learn to write multi-line strings in your Golang code
Jun 26, 2021
Learn to check if a file with a given file path exists in Golang 1.16
Jun 25, 2021
Learn to read a text file in Golang using the ioutil.ReadFile function
Jun 23, 2021
Learn to check if an array of int values are sorted in increasing order in Golang
Jun 22, 2021
Learn to use strings.Contains function in Golang to check whether a given string contains a substring or not
Jun 20, 2021
Learn to create and initialize a map of key-value pairs in Golang using the built-in make function
Jun 19, 2021
Learn to create and initialize a slice of structs in Golang using built-in make function
Jun 19, 2021
Learn to convert a JSON string to a struct using a package json UnMarshal function
Jun 19, 2021
Learn to convert a struct to a JSON using a package json Marshal function