When I assign console.log to a variable in node.js it works fine,
console.log
var l = console.log l(1) # outputs 1
However, if I do the sa
Node.js console does console.log = console.log.bind(this) in constructor.