JSFiddle - React, Tailwind, and code Playground
by devangkantharia
JavaScript
var data = [{
"id": "q1",
"question": "blah blah blah",
"percentage": "32"},
{
"id": "q2",
"question": "blah blah blah",
"percentage": "23"},
{
"id": "q3",
"question": "blah blah blah",
"percentage": "11"},
{
"id": "q4",
"question": "blah blah blah",
"percentage": "3"},
{
"id": "q5",
"question": "blah blah blah",
"percentage": "6"}];
data.sort(function(a, b) {
return a.percentage - b.percentage;
})
console.log(data);