If you don't pass anything into call(), it will be the same.; the function will be run with the same scope that the call to call() is made:
function test() {
alert(this);
}
test(); // alerts the window object
test.call(); // alerts the window object
But if you pass an object into call(), that object will be used as the scope:
test.call("hi"); // alerts "hi"
