Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyGostructs and tagsSingle-choice MCQ

How does `encoding/json` treat this unexported struct field when marshaling?

type Account struct { ID int token string } b, _ := json.Marshal(Account{ID: 7, token: "secret"}) fmt.Println(string(b))