JSFiddle - React, Tailwind, and code Playground
JavaScript
var x = {num:1};
var c = function(a,b,c){
return this.num+a+b+c;
}
console.log(c.call(x,[1,3,4]));
var x = {num:1};
var c = function(a,b,c){
return this.num+a+b+c;
}
console.log(c.call(x,[1,3,4]));