0
sortA(x) - եթե զանգվածի տարրերը աճման կարգով են դասավորված վերադարձնում է true, հակառակ դեպքում false
function sortA(x){ return x. sort((a, b) a<b) ? true : false } console.log(sortA([1,15,80]) Իմ մոտ միշտ վերադարձնում է true,ոնց գրել?
3 odpowiedzi
0
i don’t undersatand you
0
Google translate:
sortA (x) - if the array elements are arranged in ascending order, returns true, otherwise false
function sortA (x) {
return x. sort ((a, b) a <b)? true: false
}
console.log (sortA ([1,15,80])
It always returns true, how do I write?
0
oh