Yo lo haría así:
Código PHP:
<script>
var n = 4583;
// n a un array de Strings
n = n.toString().split("");
Array.prototype.sortNumAsc = function() {
return this.sort( function (a,b) { return a-b; } );
}
Array.prototype.sortNumDesc = function() {
return this.sort( function (a,b) { return b-a; } );
}
alert(n.sortNumAsc())
alert(n.sortNumDesc())
</script>