In this GO (golang) tutorial I will showcase slices and their usage. THEORY Slices are composite data types which allows the manipulation of data stored in a underlying array. A slice has three components: a pointer (to values of underlying array), a length and a capacity. Unlike arrays, slices length, capacity…