quote:
Originally posted by CookieRevised
// Returns a string representing the octal value of a number.
function Oct(number) { return number.toString(8).toUpperCase() }
You don't even need to use toUpperCase there because octal is 0 to 7
But otherwise good work