Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Test Page</title>
<style>
  body {
    font-family: sans-serif;
  }
</style>
  <a>
    <span>sdasda
      adasdasda
        </span>
  </a>
</head>
<body>
</body>
</html>
 
(function() {
  
  function Sample()
  {
      // Optionally set this.x and this.y here
  
      // Define the z property
      Object.defineProperty(this, "z", {
          get: function() {
              return this.x + this.y;
          }
      });
  }
  
  var s = new Sample();
  s.x = 3;
  s.y = 4;
  display(s.z); // "7"
  
  function display(msg) {
    var p = document.createElement('p');
    p.innerHTML = String(msg);
    document.body.appendChild(p);
  }
})();
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers