FunctionName.call(Object/function whose values you want to use as arguments for the 'this' in a function, arg1, arg2, ...argN), if your function needs to receive arguments, pass the arguments in place of ...arg.
By default, the this inside the function is set to the global object i.e. window in the web browsers and global in Nodejs.