list [ ]
, set<>
, dictionary[:]
+
를 통해 합칠 수 있다.let myFriends = ["철수", "영희", "수잔"]
let otherFriends = ["제임스", "존슨", "존시나"]
let totalFriends = myFriends + otherFriends
.append(contentsOf:)
를 사용하려면 var
이어야 한다.myFriends.append(contentsOf: otherFriends) //myFriends let 불가
let myFriends = ["철수", "영희", "수잔"]
let otherFriends: Set<String> = ["제임스", "존슨", "존시나"]
let totalFriends = myFriends + otherFriends
totalFriends //[String]