java-script:dynamic-function-invocation
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
java-script:dynamic-function-invocation [2023/08/10 15:45] – created odefta | java-script:dynamic-function-invocation [2023/08/10 15:46] (current) – odefta | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Dynamic Function Invocation ====== | ====== Dynamic Function Invocation ====== | ||
- | The **object[method](...)** syntax is a common pattern in JavaScript that allows you to dynamically call a method on an object using a variable for the method name. | + | The ;;;object[method](...);;; syntax is a common pattern in JavaScript that allows you to dynamically call a method on an object using a variable for the method name. |
This pattern can be useful in various scenarios where you need to **call different methods based on conditions or user input, or when you want to create higher-order functions that can operate on different methods.** | This pattern can be useful in various scenarios where you need to **call different methods based on conditions or user input, or when you want to create higher-order functions that can operate on different methods.** | ||
Line 23: | Line 23: | ||
const methodName = ' | const methodName = ' | ||
obj[methodName](' | obj[methodName](' | ||
+ | </ | ||
+ | |||
+ | <code javascript> | ||
+ | function myConsole(method, | ||
+ | console[method](items.join(', | ||
+ | } | ||
+ | myConsole(' | ||
</ | </ | ||
java-script/dynamic-function-invocation.1691671517.txt.gz · Last modified: 2023/08/10 15:45 by odefta