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 Hamburger(size, filling, extended) {
  
  this.TYPE_SMALL = [50, 20];
    this.TYPE_BIG = [100, 40];
    
    this.FILLING_CHEESE = [10, 20];
    this.FELLING_SALAD = [20, 5];
    this.FILLING_POTATO = [15, 10];
    
    this.EXTENDED_SEASONING = [15, 0];
    this.EXTENDED_SAUCE = [15, 10];
    
}
var hamburger = new Hamburger('small', 'cheese');
Output

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

Dismiss x
public
Bin info
fxslokerpro
0viewers