JSFiddle - React, Tailwind, and code Playground

by Santosh Giridhara

JavaScript

let data = [
  {
    country: 'China',
    population: 1409517397,
  },
  {
    country: 'India',
    population: 1339180127,
  },
  {
    country: 'USA',
    population: 324459463,
  },
  {
    country: 'Indonesia',
    population: 263991379,
  }
];

var result = data.filter(function(res){
 return res.country.includes('India');
});
console.log(result);