What is the Objective-C equivalent of the JavaScript concat() function?
concat()
Assuming that both objects are arrays, how would you combine them?
For Swift version its like charm :
let a = [1,2,3] let b = [3,4] let c = a + b print(c)