Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 634 Bytes

Question_2804.md

File metadata and controls

29 lines (26 loc) · 634 Bytes

LeetCode Records - Question 2804 Array Prototype ForEach

Attempt 1: Use call()

/**
 * @param {Function} callback
 * @param {Object} context
 * @return {void}
 */
Array.prototype.forEach = function(callback, context) {
    for (let i = 0; i < this.length; i++) {
        callback.call(context, this[i], i, this);
    }
}

/**
 *  const arr = [1,2,3];
 *  const callback = (val, i, arr) => arr[i] = val * 2;
 *  const context = {"context":true};
 *
 *  arr.forEach(callback, context)  
 *
 *  console.log(arr) // [2,4,6]
 */
  • Runtime: 83 ms (Beats: 85.19%)
  • Memory: 64.27 MB (Beats: 81.48%)