If you wish to copy the contents of a slice into an initially empty slice, following steps can be taken to accomplish it-
var sourceSlice []interface{} = []interface{}{"Hello",5.10,"World",true}
var destinationSlice []interface{} = make([]interface{},len(sourceSlice))
copy
:copy(destinationSlice,sourceSlice)