Sorting is an optional parameter which allows for automatic sorting of your data contained within the rtn.data array.
rtn.data
asc
desc
ascAlpha
descAlpha
function() { var params = { array: [0,1,2,3,4,5,6,7,8,9], threads: 2, dataType: 'Int32', sort: 'ascAlpha' }; hamsters.run(params, function() { params.array.forEach(function(item, index) { rtn.data[index] = ((item * 120) / 10); }); }, function(results) { console.log(results); }); }