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

Untitled

By: a guest on Jun 14th, 2012  |  syntax: JavaScript  |  size: 0.33 KB  |  hits: 31  |  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. function properties(ikey, label, max, min, regen_amount, regen_time, type, value) {
  2.         this.ikey = ikey;
  3.         this.label = label;
  4.         this.max = max;
  5.         this.min = min;
  6.         this.regen_amount = regen_amount;
  7.         this.regen_time = regen_time;
  8.         this.type = type;
  9.         this.value = value;
  10. }
  11.  
  12. properties.printLabel() {
  13.         console.log(properties.label);
  14. }