JS Test: Function call

Last modified by Sergiu Dumitriu on 2018/10/10 17:05

Task: What do the following code snippets return? Why?

function a() {
 return this;
}
a.call(null);
function a() {
 return this + typeof this + typeof 5;
}
a.call(5);