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 someObj = {
  someProperty: 'some value from the object'
};
console.log(someObj.someProperty); //logs "123"
var someFunction = function() {
};
someFunction.someProperty = 'value from property added the function';
console.log(someFunction.someProperty); //logs "123"
someFunction.prototype.someProperty = 'inherited value!';
var foo = new someFunction();
console.log(foo.someProperty); //logs "123"
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers