Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 471 Bytes

Question_2690.md

File metadata and controls

26 lines (22 loc) · 471 Bytes

LeetCode Records - Question 2690 Infinite Method Object

Attempt 1: Use Proxy()

/**
 * @return {Object}
 */
var createInfiniteObject = function() {
    const proxy = new Proxy({}, {
        get: (_, key) => {
            return () => key;
        }
    });
    
    return proxy;
};

/**
 * const obj = createInfiniteObject();
 * obj['abc123'](); // "abc123"
 */
  • Runtime: 43 ms (Beats: 87.81%)
  • Memory: 49.04 MB (Beats: 7.32%)