René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

pop [JavaScript snippet]

function main() {

  var a = ['one', 'two', 'three',]

  var b
  while (b = a.pop()) {
    txt_out(b)
  }
  
}