All pastes #660152 Raw Edit

Stuff

public text v1 · immutable
#660152 ·published 2007-08-16 20:00 UTC
rendered paste body
function exampleClass(){
  var interval = 500;

  this.init = init;;
  this.update = update;

  function init(){
    setInterval('update()',interval);
  }
  function update(){
    alert('updated');
  }

}