Challenge 4: Check If List Is Sorted
In this challenge, check whether a list is sorted or not.
We'll cover the following...
Problem Statement
Make an isSorted
function that receives a list
as a parameter and returns true if the list is sorted in ascending order. ...