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

Untitled

By: a guest on Sep 18th, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 14  |  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. var fb = {
  2.         fbArr:['','','Fizz','','Buzz','Fizz','','','Fizz','Buzz','','Fizz','','','FizzBuzz'],
  3.         next:function(){
  4.                 var first_slot = this.fbArr.shift();
  5.                 this.fbArr.push(first_slot);
  6.                 console.log(first_slot);
  7.         }
  8. }
  9. fb.next();
  10. while(true){
  11.         fb.next();
  12. }