Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

dynamic call function

this.callFunction = this.call_function = function(name) {
    var args = Array.prototype.slice.call(arguments, 1);
    return window[name].call(this, ...args);
};

function sayHello(name, age) {
    console.log('hello ' + name + ', your'e age is ' + age);
    return some;
}

console.log(call_function('sayHello', 'john', 30)); // hello john, your'e age is 30
Comment

PREVIOUS NEXT
Code Example
Javascript :: react-folder tree example 
Javascript :: createfileinput javascript 
Javascript :: js how to shuffle array algoritm. The Fisher-Yates algorith 
Javascript :: autonumeric stimulus 
Javascript :: Number o flines of typography element react material 
Javascript :: MAP METHOD. IMPORTANT 
Javascript :: laravel onkeyup textbox, get value from span javascript 
Javascript :: parcel react 
Javascript :: how to setup a webpack quickly 
Javascript :: Cannot redefine property: clientWidth 
Javascript :: angular create spec file for existing component 
Javascript :: angularjs Add aria-label to table header in datatable 
Javascript :: How to call keyup function on textbox for every dynamic generated form in Angular8 
Javascript :: Chrome DevTools - why does variable display in Watch but not under Scope 
Javascript :: Conditional navigation inside Tabs 
Javascript :: Error thrown after ending the audio track / array of tracks in React Native Track Player 
Javascript :: mutexify 
Javascript :: assignment is to create a small website using NestJS in the backend and basic HTML CSS in the frontend 
Javascript :: Connect session middleware - regenerate vs reload 
Javascript :: javascript check if key is keydown is charcter 
Javascript :: javascript get elemet last of array 
Javascript :: Uncaught (in promise) TypeError: dispatch is not a function 
Javascript :: select final 2 indexes in JS 
Javascript :: javascript code to decide even or odd number in html using visual studio 
Javascript :: pass a react component as a prop from another component 
Javascript :: array operations = map, filter, find, reduce, some, every, indexOf 
Javascript :: change dir npm run build 
Javascript :: Dependency Injection in Node.js 
Javascript :: js beutify node.js 
Javascript :: wait untill 2 
ADD CONTENT
Topic
Content
Source link
Name
4+2 =