Awesome vocal synth
Hi
Imperial Fleet Week
I decided to start playing with spidermonkey tonight
// Wrote a qsort
js> var qsort = function(list) {
if (list.length == 0) { return []; }
var pivot = list.pop();
var gt = [];
var lt = [];
while(list.length > 0) {
var n = list.pop();
if (n > pivot) {
gt.push(n);
} else {
lt.push(n);
}
}
return Array.concat(Array.concat(qsort(lt),pivot),qsort(gt))
}
js> qsort([6,4,300,14,57,8,9000]);
4,6,8,14,57,300,9000
Intelligent and Classy Women of NY
[ edit: woops, wrong attribution, it’s - http://twitter.com/jsmooth995 ]