Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 17th, 2012  |  syntax: None  |  size: 0.32 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. MooTools? What is its primary advantage? [closed]
  2. var Animal = new Class({
  3.     initialize: function(age){
  4.         this.age = age;
  5.     }
  6. });
  7. var Cat = new Class({
  8.     Extends: Animal,
  9.     initialize: function(name, age){
  10.         this.parent(age); // calls initalize method of Animal class
  11.         this.name = name;
  12.     }
  13. });