Question #44

Author: admin
tags: JavaScript  
class Test { }
const x = new Test(); 
x.__proto__ = {};
 
console.log(x instanceof Test); // ??
What will the console output be?
null
true
false
Nothing. An error will occur.
The instanceof operator only analyzes the chain of prototypes and returns true or false.
Rate the difficulty of the question:
easyhard