Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <h1 id="title">Demo</h1>
  <button id="add">Add</button>
  <button id="eat">Eat</button>
  <pre id="msg"></pre>
</body>
</html>
 
function AppleBasket(apples) {
  var _apples = Math.abs(apples) || 0,
      _msg = document.getElementById('msg');     
  var howMany = function () {
    _log('You have ' +
    _apples + ' apples in your basket.'); 
  };
  var add = function () {
    if (_apples < 12) {
      _apples++;
      this.howMany();               
    } else {
      _log('Your basket is full!');       
    }
  };
  var eat = function () {
    if (_apples > 0) {
      _apples--;
      this.howMany();
    } else {
      _log('You have no more apples to eat!');
    }
  };
  var _log = function (msg) {
    _msg.innerText = msg;
  };
  return {
    howMany: howMany,
    add: add,
    eat: eat
  };
}
var apples = new AppleBasket(-1);
document.getElementById('add').onclick = function () { apples.add(); };
document.getElementById('eat').onclick = function () { apples.eat(); };
// console.log(document);
Output

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

Dismiss x
public
Bin info
timhobbspro
0viewers