In this chapter, you learned about many interesting Go topics, including numeric data types, maps, arrays, and slices, as well as Go pointers, Go constants and loops, and how Go allows you to work with dates and times. You should understand by now why slices are superior to arrays.
The next chapter will be about building and using composite types in Go, which mainly includes types that are created with the struct keyword and are called structures. After that, we will talk about string variables and tuples.
Additionally, the next chapter will talk about regular expressions and pattern matching, which are tricky subjects not only in Go but also in every other programming language. However, when used properly and carefully, regular expressions and pattern matching can make the life of a developer so much easier that it is totally worth learning more about them.
JSON is a...