show/hide this revision's text 2 added another way to do it, thanks to Dave L's comment.

initialise the high and low to be the first element. makes a lot more sense than picking an arbitrarily "high" or "low" number.

var myArray = [...],
    low = myArray[0],
    high = myArray[0]
;
// start looping at index 1
for (var i = 1, l = myArray.length; i < l; ++i) {
    if (myArray[i] > high) {
        high = myArray[i];
    } else if (myArray[i] < low) {
        low = myArray[i];
    }
}

or, avoiding the need to lookup the array multiple times:

for (var i = 1, val; (val = myArray[i]) !== undefined; ++i) {
    if (val > high) {
        high = val;
    } else if (val < low) {
        low = val;
    }
}
show/hide this revision's text 1

initialise the high and low to be the first element. makes a lot more sense than picking an arbitrarily "high" or "low" number.

var myArray = [...],
    low = myArray[0],
    high = myArray[0]
;
// start looping at index 1
for (var i = 1, l = myArray.length; i < l; ++i) {
    if (myArray[i] > high) {
        high = myArray[i];
    } else if (myArray[i] < low) {
        low = myArray[i];
    }
}