freeCodeCamp/guide/english/go/go-slices/index.md

18 lines
795 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Go Slices
---
## Go Slices
Slices are a key data type in Go, giving a more powerful interface to sequences than arrays.
2018-10-12 19:37:13 +00:00
Unlike arrays, slices are typed only by the elements they contain (not the number of elements). To create an empty slice with non-zero length, use the builtin make. Here we make a slice of strings of length 3 (initially zero-valued).
2018-10-12 19:37:13 +00:00
```s := make([]string, 3)```
2018-10-12 19:37:13 +00:00
#### More Information:
<!-- Please add any articles you think might be helpful to read before writing the article -->
* [A Tour of Go](https://tour.golang.org/moretypes/7)
* [Go By Example](https://gobyexample.com/slices)
* [Golang Book](https://www.golang-book.com/books/intro/6#section2)
* [The Go Programming Language Specification](https://golang.org/ref/spec#Making_slices_maps_and_channels)