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
<p><ahref="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/pop"><code>Array.prototype.pop()</code></a> Removes the last element from an array and returns that element.</p>
1039
1039
<p><ahref="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/push"><code>Array.prototype.push()</code></a> Adds one or more elements to the end of an array and returns the new length of the array.</p>
1040
1040
<p><strong>Queue Methods</strong></p>
1041
-
<p><ahref="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/unshift"><code>rray.prototype.unshift()</code></a> Adds one or more elements to the front of an array and returns the new length of the array.</p>
1041
+
<p><ahref="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/unshift"><code>Array.prototype.unshift()</code></a> Adds one or more elements to the front of an array and returns the new length of the array.</p>
1042
1042
<p><ahref="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/pop"><code>Array.prototype.pop()</code></a> Removes the last element from an array and returns that element.</p>
1043
1043
<p><strong>Misc</strong></p>
1044
1044
<p><ahref="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/reverse"><code>Array.prototype.reverse()</code></a> Reverses the order of the elements of an array in place — the first becomes the last, and the last becomes the first.</p>
0 commit comments