Question 31 of 5853%
31

What gets logged for below code snippets?

var foo = function() {}

var foo2 = foo

console.log(foo.name, foo2.name)
31/58