Join Slack
Powered by
I have this array result. i want it to be sorted ....
# suitescript
v
vennila ramasamy
02/20/2023, 1:56 PM
I have this array result. i want it to be sorted . how can i achieve this ? Please anyone can help me? [["35279925","35279932","35279930","35279928"]]
b
Beta Tester
02/20/2023, 2:01 PM
const arr = [["35279925","35279932","35279930","35279928"]]; arr[0].sort((a, b) => a - b); console.log(arr); -chatgpt
c
creece
02/20/2023, 4:29 PM
also depends on how you're getting the results. If those are search results, you can add a sort to the search column.
4
Views
Open in Slack
Previous
Next