Swift version: 5.10
There are three ways of adding one array to another, and you can use whichever syntax you prefer.
First, make a couple of test arrays to work with:
var first = ["John", "Paul"]
let second = ["George", "Ringo"]
Note: I made the first array mutable so we can join the second array to it.
One option for joining arrays is the append(contentsOf:) method, used like this:
first.append(contentsOf: second)
Another option is using the += operator, which is overloaded for arrays to combine elements:
first += second
The third option is to use a regular + to create a new array by combining two others:
let third = first + second
All three options produce the same resulting array, albeit with different approaches.
SAVE 50% All our books and bundles are half price for Black Friday, so you can take your Swift knowledge further for less! Get my all-new book Everything but the Code to make more money with apps, get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn Swift Testing, design patterns, and more.
Available from iOS – learn more in my book Pro Swift
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.