Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>ES-Harmony example</title>
</head>
<body>
</body>
</html>
 
var Proxy = function(){};
var p =   Proxy.create(this, {
    get: function(proxy, name) { // intercepts property access
      
      return 'Hello, '+ name;
    },
    set: function(proxy, name, value) { // intercepts property assignments
      console.debug(name +'='+ value);
      return true;
    }
  });
alert('foo');
p.fooppp = 'bar';
p.bar = 'ba';
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers