What does the code snippet to the right output by console.log?
console.log
function F() { this.foo = 'bar' } const f = new F() console.log(f.prototype)
Source Fromopen in new window