how to convert number to string in go code example
Example 1: golang convert int to string
str := strconv.Itoa(12)
Example 2: go convert integer to string
s := strconv.Itoa(i)
// also
s := strconv.FormatInt(i, 10)
// and also
s := fmt.Sprintf("%d", i)