Question 48 of 10048%
48

What gets logged for below code snippets?

var foo = function() {}

var foo2 = foo

console.log(foo.name, foo2.name)
48/100