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>
    var car = {
      name: "i20",
      manf: "hyundai",
      showManufacturer:function(){
        alert(this.manf);
      }
    }    
    
    Object.prototype.showName = function(){
      var msg = this.name || "name not set";
      alert(msg);
    }
    
    
    
    var car2 = {
      name: "i10",
      manf: "hyundai",
      showManufacturer:function(){
        alert(this.manf);
      }
    }  
    
    car.showName();
    car2.showName();
  </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