xxxxxxxxxx
34
/// Practicing how to sort because I'm an idiot.
//var test =[17, 4, 3, 9, 8, 1];
var test=[10, 7, 1, 3];
function setup() {
createCanvas(400, 400);
sortTest();
}
function draw() {
background(220);
}
function sortTest()
{
for(var i=0; i<test.length; i++)
{
for(var j=0; j<test.length; j++)
{
if(test[i]<test[j])
{
temp=test[i];
test[i]=test[j];
test[j]=temp;
}
}
}
console.log(test);
}