Call Function with Custom Context — LeetCode 2693 Python Solution
MediumJavaScript
- Problem
- #2693
- Reading time
- 2 min
- Source
- leetcode.com
The problem
Enhance all functions to have the callPolyfill method. The method accepts an object obj as its first parameter and any number of additional arguments.
Example
function tax(price, taxRate) {
const totalCost = price * (1 + taxRate);
console.log(`The cost of ${this.item} is ${totalCost}`);
}Complexity
| Measure | Complexity |
|---|---|
| Time | O(n) |
| Space | O(1) to O(n) auxiliary |
Related problems
Frequently asked questions
- How hard is LeetCode 2693. Call Function with Custom Context?
- LeetCode 2693. Call Function with Custom Context is rated Medium on LeetCode.
- What topics does LeetCode 2693. Call Function with Custom Context cover?
- LeetCode 2693. Call Function with Custom Context is tagged JavaScript on LeetCode.