cachaito
7/20/2015 - 12:35 PM

Weird stuff with objects

//case 1
var obj = {};

console.log( 7 + obj ); // “7[object Object]”

//case 2
var obj = {
  valueOf: function() {
    return 42;
  }
};

console.log( 7 + obj ); // 49 !!!