Home > JavaScript Questions > What is a difference between call,apply and bind in JavaScript?
functionName.call(thisArg,arg1,arg2,...)
functionName.apply(this.Arg, [arg1,arg2,..])
functionName.bind(thisArg)