Skip to content

Instantly share code, notes, and snippets.

@aksnell
Created July 1, 2020 13:28
Show Gist options
  • Save aksnell/8ecc236dab4642ec9a93d461567f78e2 to your computer and use it in GitHub Desktop.
Save aksnell/8ecc236dab4642ec9a93d461567f78e2 to your computer and use it in GitHub Desktop.
function inAscOrder(arr) {
let prevNum = 0
for (num of arr) {
if (num < prevNum) {
return false
} else {
prevNum = num
}
}
return true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment