Skip to content

Instantly share code, notes, and snippets.

@essamamdani
Created April 21, 2020 12:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save essamamdani/1ec1ed9013ca8098528009d6b9fbc8f5 to your computer and use it in GitHub Desktop.
Save essamamdani/1ec1ed9013ca8098528009d6b9fbc8f5 to your computer and use it in GitHub Desktop.
<script>
//declaring a function to sort numbers
function sortNumbers(){
//declare and initialize array of numbers
const nums = [3,14,45,12];
//sort the array and display the result
document.write(nums.sort());
}
sortNumbers();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment