#golang-developer
Read more stories on Hashnode
Articles with this tag
Introduction Conversion is a crucial concept in any programming language, including Go. It allows you to change the type of a variable to another...
Introduction Have you ever come across a statement like this? func main() { i := "hello world" n, ok := i.(int) if ok { ...