JS Test: Instance

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

Task: What does the following code return? Why?

function f() { return f; }
new f() instanceof f;