- Definition: Adds one or more elements to the end of an array and returns the new length of the array.
- Syntax:
array.push(element1[, ...[, elementN]]) - Example:
let arr = [1, 2, 3]; arr.push(4, 5);
console.log(arr); // Output: [1, 2, 3, 4, 5]
| Two pointers: one input, opposite ends | |
| ```python3 | |
| def fn(arr): | |
| left = ans = 0 | |
| right = len(arr) - 1 | |
| while left < right: | |
| # do some logic here with left and right | |
| if CONDITION: |
| var groupBy = function(data, key) { // `data` is an array of objects, `key` is the key (or property accessor) to group by | |
| // reduce runs this anonymous function on each element of `data` (the `item` parameter, | |
| // returning the `storage` parameter at the end | |
| return data.reduce(function(storage, item) { | |
| // get the first instance of the key by which we're grouping | |
| var group = item[key]; | |
| // set `storage` for this instance of group to the outer scope (if not empty) or initialize it | |
| storage[group] = storage[group] || []; | |
| [ | |
| { | |
| "quote" : "Life isn’t about getting and having, it’s about giving and being.", | |
| "name": "Kevin Kruse" | |
| }, | |
| { | |
| "quote" : "Whatever the mind of man can conceive and believe, it can achieve.", | |
| "name" : "Napoleon Hill" | |
| }, | |
| { |
| ["Life isn’t about getting and having, it’s about giving and being.", "Kevin Kruse"] | |
| ["Whatever the mind of man can conceive and believe, it can achieve.", "Napoleon Hill"] | |
| ["Strive not to be a success, but rather to be of value.", "Albert Einstein"] | |
| ["Two roads diverged in a wood, and I—I took the one less traveled by, And that has made all the difference.", "Robert Frost"] | |
| ["I attribute my success to this: I never gave or took any excuse.", "Florence Nightingale"] | |
| ["You miss 100% of the shots you don’t take.", "Wayne Gretzky"] | |
| ["I’ve missed more than 9000 shots in my career. I’ve lost almost 300 games. 26 times I’ve been trusted to take the game winning shot and missed. I’ve failed over and over and over again in my life. And that is why I succeed.", "Michael Jordan"] | |
| ["The most difficult thing is the decision to act, the rest is merely tenacity.", "Amelia Earhart"] | |
| ["Every strike brings me closer to the next home run.", "Babe Ruth"] | |
| ["Definiteness of purpose is the starting point of all achievement.", "W. |