Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
var w, x;
Object.defineProperty(Object.prototype, 'intersect', {
  value: function(obj) {
    var k, t;
    t = {};
    for (k in obj) {
      t[k] = this[k];
    }
    return t;
  }
});
x = {
  a: 1,
  b: 2,
  c: 3,
  d: "33"
};
w = {
  a: 3,
  b: 4
};
console.log(x.intersect(w));
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
Canoppro
0viewers