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>
  <script type="text/javascript">
    //global
    var car = { 
        name:"i20",
        manf:"hyundai",
        exprice:650000,
        tax:100000,
        getOnRoadPrice:function(){
            // this refers to instance car
            return this.format(this.exprice + this.tax);
        },
        format: function(amount){
            return amount.fixed(0);
        }
    };
    
    alert(Object.prototype);
    alert(car.prototype);
    
  </script>
</body>
</html>
Output

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

Dismiss x
public
Bin info
_diode_pro
0viewers