How to initialize the slice with values using a slice literal?
A slice literal contain empty brackets followed by the type of elements the slice will hold, and a list of the initial values each element will have in curly braces.
Example
package main
import "fmt"
func main() {
var intSlice = []int{10, 20, 30, 40}
var strSlice = []string{"India", "Canada", "Japan"}
fmt.Printf("intSlice \tLen: %v \tCap: %v\n", len(intSlice), cap(intSlice))
fmt.Printf("strSlice \tLen: %v \tCap: %v\n", len(strSlice), cap(strSlice))
}
Most Helpful This Week
How do you handle HTTP client server security in Go?
Use Field Tags in the Definition of Struct Type
How do you send an HTTP PUT request in Go?
State and Props in React
GO supports the standard arithmetic operators: (Addition, Subtraction, Multiplication, Division,Remainder)
How do you handle HTTP server shutdown gracefully in Go?