Bit #6 You can represents type “any” in Go using empty interface. var a interface{}a = 20a = "a string"a = truea = []int{1, 2, 3}a = struct { Name string Email string} {"John", "[email protected]"}