OrderBy
With the "orderBy" function you can reorder the data in your json array.
Usage
Install
$ npm install json-functionImport
import { orderBy } from 'json-function';Usage
const data = [
{
id: 1,
userId: 1,
title: "quis ut nam facilis et officia qui"
},
{
id: 2,
userId: 1,
title: "lorem ipsum"
},
{
id: 3,
userId: 2,
title: "delectus aut autem"
}
];Last updated
Was this helpful?
