I see some people create a for loop and run through the slice as to create a string, is there an easier way to convert a []string to a string?
for
[]string
string
Will sprintf do it?
sprintf
You can use strings.Join(arr \[\]string, separator string) string.
strings.Join(arr \[\]string, separator string) string