Untitled
Anonymous
html
02/07/2022 11:28 PM
296 B
21
Indexable
<h3>Scores:</h3>
<script>
var numArray = [5, 10, 85]
numArray.sort((a, b) => { return b - a })
console.log(numArray) // Highscore sorting demo
</script> <!-- Add script that loads all the highscores -->Editor is loading...