We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a559e4 commit b8ca925Copy full SHA for b8ca925
1 file changed
src/lib/es5.d.ts
@@ -1125,15 +1125,15 @@ interface Array<T> {
1125
* Returns a string representation of an array. The elements are converted to string using their toLocalString methods.
1126
*/
1127
toLocaleString(): string;
1128
+ /**
1129
+ * Removes the last element from an array and returns it.
1130
+ */
1131
+ pop(): T | undefined;
1132
/**
1133
* Appends new elements to an array, and returns the new length of the array.
1134
* @param items New elements of the Array.
1135
1136
push(...items: T[]): number;
- /**
- * Removes the last element from an array and returns it.
- */
- pop(): T | undefined;
1137
1138
* Combines two or more arrays.
1139
* @param items Additional items to add to the end of array1.
0 commit comments