``` coffeescript john = new Backbone.Model() building1 = new Backbone.Model() building1.set {constructor: john} building1.has 'constructor' # => true building2 = new Backbone.Model() building2.has 'constructor' # => true. WTF? ```