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

join [JavaScript snippet]

function main() {

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

  txt_out("typeof(a): " + typeof(a)) // object

  txt_out(a.join("-", a))
}