Every developer starts with small projects.
Calculators
Todo apps
Weather apps
Don't underestimate them.
They build your foundation.
#coding#webdev#learnprogramming
one thing i love about Go
multiple return values
in JS you'd do this:
return { data, error }
in Go:
func getUser() (*User, error) {
return user, nil
}
no need to wrap in an object
errors are just return values
nothing is hidden
#golang#webdev#learnprogramming#javascript