golang

why concurrency is hard go

Why Concurrency is hard Golang

0

Concurrent code is notoriously difficult to get right. It usually takes a few iterations to get it working as expected, but Golang can handle concurrency.

golang-ways-to-check-map-key-exists

Golang check if map key exists

0

Go map are almost like json, as we access value of json via key we also do the same with map of Go, There are multiple ways to check if a key exists in a map.

loops-in-golang-explained

Loops in Golang

0

Every programming language has a way of looping and Go is no exception. Go offers the for loop, which allows you to retrieve over many kinds of data types.

numeric-data-type-explained-go

Numeric Data Types In Go

0

Golang have multiple numeric data types. Go has native support for integers and floating-point numbers, as well as complex numbers.