Ashok Vangablock360.hashnode.dev·Apr 20, 2023Methods vs Functions , Understanding how to use receivers in GoImagine a scenario Where we have a struct type with some fields and we want to define methods that can access and modify those fields. Defining a method & function in Go is as follows: func (receiverName ReceiverType) MethodName(parameters) (returnTy...28 readsGo HackHouseMethods vs Functions