Closed
Description
Example
func(s ...string) {
if s == nil {
fmt.Println("s is nil")
}
}()
With Go compiler s == nil
(playground)
With GopherJS s != nil
(playground)
Spec
https://golang.org/ref/spec#Passing_arguments_to_..._parameters