Update isSorted to use a proper name
This commit is contained in:
@ -1,4 +1,4 @@
|
|||||||
### functionName
|
### isSorted
|
||||||
|
|
||||||
Returns `1` if the array is sorted in ascending order, `-1` if it is sorted in descending order or `0` if it is not sorted.
|
Returns `1` if the array is sorted in ascending order, `-1` if it is sorted in descending order or `0` if it is not sorted.
|
||||||
|
|
||||||
@ -7,7 +7,7 @@ Use `Object.entries()` to loop over array objects and compare them in pairs.
|
|||||||
Return `0` if the `direction` changes or the `direction` if the last element is reached.
|
Return `0` if the `direction` changes or the `direction` if the last element is reached.
|
||||||
|
|
||||||
```js
|
```js
|
||||||
const isArraySorted = arr => {
|
const isSorted = arr => {
|
||||||
const direction = arr[0] > arr[1] ? -1 : 1;
|
const direction = arr[0] > arr[1] ? -1 : 1;
|
||||||
for (let [i, val] of arr.entries())
|
for (let [i, val] of arr.entries())
|
||||||
if (i === arr.length - 1) return direction;
|
if (i === arr.length - 1) return direction;
|
||||||
@ -16,8 +16,8 @@ const isArraySorted = arr => {
|
|||||||
```
|
```
|
||||||
|
|
||||||
```js
|
```js
|
||||||
isArraySorted([0, 1, 2, 3]); // 1
|
isSorted([0, 1, 2, 3]); // 1
|
||||||
isArraySorted([0, 1, 2, 2]); // 1
|
isSorted([0, 1, 2, 2]); // 1
|
||||||
isArraySorted([4, 3, 2]); // -1
|
isSorted([4, 3, 2]); // -1
|
||||||
isArraySorted([4, 3, 5]); // 0
|
isSorted([4, 3, 5]); // 0
|
||||||
```
|
```
|
||||||
@ -71,7 +71,7 @@ isAbsoluteURL:string
|
|||||||
isArmstrongNumber:math
|
isArmstrongNumber:math
|
||||||
isArray:utility
|
isArray:utility
|
||||||
isArrayLike:utility
|
isArrayLike:utility
|
||||||
isArraySorted:array
|
isSorted:array
|
||||||
isBoolean:utility
|
isBoolean:utility
|
||||||
isDivisible:math
|
isDivisible:math
|
||||||
isEven:math
|
isEven:math
|
||||||
|
|||||||
Reference in New Issue
Block a user