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

push [JavaScript snippet]

function main() {
 
  var a = []

  a.push('one')
  a.push('two')
  a.push('three')

  for (var i in a) {
    txt_out(a[i])
  }
}