You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Adds all the elements of an array separated by the specified separator string.
1091
1101
* @param separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.
@@ -1214,6 +1224,16 @@ interface Array<T> {
1214
1224
* @param items Additional items to add to the end of array1.
1215
1225
*/
1216
1226
concat(...items: (T|ConcatArray<T>)[]): T[];
1227
+
/**
1228
+
* Combines two or more arrays.
1229
+
* @param items Additional items to add to the end of array1.
1230
+
*/
1231
+
concat<U>(...items: ConcatArray<U>[]): (T|U)[];
1232
+
/**
1233
+
* Combines two or more arrays.
1234
+
* @param items Additional items to add to the end of array1.
* Adds all the elements of an array separated by the specified separator string.
1219
1239
* @param separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.
0 commit comments