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>
 
    function Price(basePrice) {
        this.discount = 0.85;
        this.base = basePrice;
        var tax = 1.23;
        this.result = this.base * this.discount * tax;
    }
    
    var myPrice = new Price(10);
    console.log(myPrice);
    console.log(myPrice.discount);
    console.log(myPrice.base);
    console.log(myPrice.tax);
    console.log(myPrice.result);
Output

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

Dismiss x
public
Bin info
FDVSpro
0viewers