Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 21st, 2010 | Syntax: JavaScript | Size: 0.24 KB | Hits: 50 | Expires: Never
Copy text to clipboard
  1.  
  2.  
  3. function Auto () {
  4.        
  5.         this.velocity = 100;
  6.        
  7.         var a = this;
  8.         document.onclick = function() { a.fahren(); };
  9.        
  10. }
  11.  
  12. Auto.prototype.fahren = function() {
  13.  
  14.         alert("Ich fahre "+ this.velocity + " km/h");
  15.  
  16. }
  17.  
  18. var bmw = new Auto();