Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE HTML>
<html>
<head>
 <meta charset="UTF-8">
  <title>Title</title>
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://documentcloud.github.com/underscore/underscore-min.js"></script>
<script src="http://documentcloud.github.com/backbone/backbone-min.js"></script>
<script>
 var jedi = Backbone.Model.extend({
  // Default jedi attribute values
  defaults: {
    title: '',
    completed: false
  }
});
var jedi1 = new jedi();
console.log(jedi1.get('title')); // empty string
console.log(jedi1.get('completed')); // false
var jedi2 = new jedi({
  title: "Retrieved with model's get() method.",
  completed: true
});
console.log(jedi2.get('title')); // Retrieved with model's get() method.
console.log(jedi2.get('completed')); // true
</script>
</body>
</html>
Output

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

Dismiss x
public
Bin info
saan1984pro
0viewers