Skip to content

Instantly share code, notes, and snippets.

@devmeireles
Created May 18, 2023 07:32
Show Gist options
  • Save devmeireles/5397feb1235b271cabbfb3f3a84d7010 to your computer and use it in GitHub Desktop.
Save devmeireles/5397feb1235b271cabbfb3f3a84d7010 to your computer and use it in GitHub Desktop.
Using reduce to remove repeated based on object property and filter to get data according to the params
const people = [
{
id: 1,
name: "Arly Manifould",
profile: {
age: 46,
city: "Yoichi",
nationality: "Japan",
},
interactions: [
{
id: 1,
createdAt: "1640720345000",
},
{
id: 2,
createdAt: "1649543125000",
},
],
},
{
id: 2,
name: "Trina Jakaway",
profile: {
age: 66,
city: "Agrela",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1599862363000",
},
{
id: 2,
createdAt: "1670414940000",
},
{
id: 3,
createdAt: "1581714270000",
},
{
id: 4,
createdAt: "1700143241000",
},
{
id: 5,
createdAt: "1652697568000",
},
],
},
{
id: 3,
name: "Tessie MacDiarmond",
profile: {
age: 42,
city: "Zárate",
nationality: "Argentina",
},
interactions: [
{
id: 1,
createdAt: "1686253880000",
},
{
id: 2,
createdAt: "1671831135000",
},
{
id: 3,
createdAt: "1577963487000",
},
{
id: 4,
createdAt: "1632156644000",
},
{
id: 5,
createdAt: "1682889988000",
},
{
id: 6,
createdAt: "1663376494000",
},
{
id: 7,
createdAt: "1691141830000",
},
{
id: 8,
createdAt: "1620449841000",
},
{
id: 9,
createdAt: "1655853862000",
},
{
id: 10,
createdAt: "1607112963000",
},
],
},
{
id: 4,
name: "August Jacombs",
profile: {
age: 58,
city: "Junín",
nationality: "Argentina",
},
interactions: [
{
id: 1,
createdAt: "1650163193000",
},
{
id: 2,
createdAt: "1662837501000",
},
{
id: 3,
createdAt: "1612640337000",
},
{
id: 4,
createdAt: "1639102358000",
},
{
id: 5,
createdAt: "1592738228000",
},
],
},
{
id: 5,
name: "Meriel Rabjohns",
profile: {
age: 50,
city: "Tucumã",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1588194731000",
},
{
id: 2,
createdAt: "1676931995000",
},
{
id: 3,
createdAt: "1640506030000",
},
],
},
{
id: 6,
name: "Lonee Forkan",
profile: {
age: 53,
city: "Yatsuomachi-higashikumisaka",
nationality: "Japan",
},
interactions: [
{
id: 1,
createdAt: "1613344738000",
},
],
},
{
id: 7,
name: "Barron Phaup",
profile: {
age: 39,
city: "Franca",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1630485268000",
},
{
id: 2,
createdAt: "1623218297000",
},
{
id: 3,
createdAt: "1660592060000",
},
{
id: 4,
createdAt: "1637201380000",
},
{
id: 5,
createdAt: "1668353507000",
},
{
id: 6,
createdAt: "1582840606000",
},
],
},
{
id: 8,
name: "Abbye Bladesmith",
profile: {
age: 54,
city: "Campinho",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1589628641000",
},
{
id: 2,
createdAt: "1656793780000",
},
{
id: 3,
createdAt: "1634266120000",
},
{
id: 4,
createdAt: "1659735797000",
},
{
id: 5,
createdAt: "1619540162000",
},
{
id: 6,
createdAt: "1595794678000",
},
{
id: 7,
createdAt: "1578440509000",
},
{
id: 8,
createdAt: "1633104365000",
},
{
id: 9,
createdAt: "1678424560000",
},
],
},
{
id: 9,
name: "Reta Lodwig",
profile: {
age: 45,
city: "Kamaishi",
nationality: "Japan",
},
interactions: [
{
id: 1,
createdAt: "1613511668000",
},
{
id: 2,
createdAt: "1628708112000",
},
{
id: 3,
createdAt: "1652033191000",
},
{
id: 4,
createdAt: "1585560753000",
},
{
id: 5,
createdAt: "1697794341000",
},
{
id: 6,
createdAt: "1703935024000",
},
],
},
{
id: 10,
name: "Lamont Amaya",
profile: {
age: 67,
city: "Santo Antônio de Posse",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1661445499000",
},
{
id: 2,
createdAt: "1678258979000",
},
{
id: 3,
createdAt: "1614554784000",
},
{
id: 4,
createdAt: "1653455605000",
},
{
id: 5,
createdAt: "1590152293000",
},
],
},
{
id: 11,
name: "Zane Hornbuckle",
profile: {
age: 28,
city: "Vale das Mós",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1694766429000",
},
{
id: 2,
createdAt: "1666115588000",
},
],
},
{
id: 12,
name: "Anita Lamshead",
profile: {
age: 40,
city: "Miura",
nationality: "Japan",
},
interactions: [
{
id: 1,
createdAt: "1655559560000",
},
{
id: 2,
createdAt: "1693391106000",
},
],
},
{
id: 13,
name: "Simona Melding",
profile: {
age: 18,
city: "Igreja",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1585920289000",
},
{
id: 2,
createdAt: "1634298695000",
},
{
id: 3,
createdAt: "1642044604000",
},
{
id: 4,
createdAt: "1703006713000",
},
{
id: 5,
createdAt: "1594561750000",
},
{
id: 6,
createdAt: "1578681441000",
},
{
id: 7,
createdAt: "1582598028000",
},
{
id: 8,
createdAt: "1628089612000",
},
{
id: 9,
createdAt: "1603422207000",
},
{
id: 10,
createdAt: "1627607498000",
},
],
},
{
id: 14,
name: "Alexandr Vale",
profile: {
age: 34,
city: "Conceição do Coité",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1592440683000",
},
{
id: 2,
createdAt: "1582401157000",
},
{
id: 3,
createdAt: "1590838878000",
},
],
},
{
id: 15,
name: "Sena Venables",
profile: {
age: 54,
city: "Maskinongé",
nationality: "Canada",
},
interactions: [],
},
{
id: 16,
name: "Loren McDermott",
profile: {
age: 49,
city: "Swift Current",
nationality: "Canada",
},
interactions: [
{
id: 1,
createdAt: "1621711988000",
},
{
id: 2,
createdAt: "1691560142000",
},
{
id: 3,
createdAt: "1698581105000",
},
{
id: 4,
createdAt: "1629791821000",
},
{
id: 5,
createdAt: "1593508668000",
},
{
id: 6,
createdAt: "1678909670000",
},
{
id: 7,
createdAt: "1691502520000",
},
],
},
{
id: 17,
name: "Amelia Johannes",
profile: {
age: 63,
city: "Goiana",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1664022948000",
},
{
id: 2,
createdAt: "1587328515000",
},
{
id: 3,
createdAt: "1676621580000",
},
{
id: 4,
createdAt: "1680697328000",
},
{
id: 5,
createdAt: "1693209342000",
},
{
id: 6,
createdAt: "1621195503000",
},
],
},
{
id: 18,
name: "Salem Pointing",
profile: {
age: 67,
city: "Picassinos",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1605918893000",
},
{
id: 2,
createdAt: "1694687785000",
},
{
id: 3,
createdAt: "1618444466000",
},
{
id: 4,
createdAt: "1580525453000",
},
{
id: 5,
createdAt: "1611698576000",
},
{
id: 6,
createdAt: "1595775038000",
},
{
id: 7,
createdAt: "1639391080000",
},
{
id: 8,
createdAt: "1619429040000",
},
{
id: 9,
createdAt: "1647502971000",
},
],
},
{
id: 19,
name: "Bianka De Cruze",
profile: {
age: 26,
city: "General Alvear",
nationality: "Argentina",
},
interactions: [
{
id: 1,
createdAt: "1680458989000",
},
{
id: 2,
createdAt: "1641418118000",
},
{
id: 3,
createdAt: "1609022015000",
},
{
id: 4,
createdAt: "1585187884000",
},
{
id: 5,
createdAt: "1599598785000",
},
{
id: 6,
createdAt: "1611651644000",
},
],
},
{
id: 20,
name: "Jerald Cowdery",
profile: {
age: 41,
city: "Póvoa de Santo António",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1605301787000",
},
{
id: 2,
createdAt: "1671599082000",
},
{
id: 3,
createdAt: "1688800141000",
},
{
id: 4,
createdAt: "1627172591000",
},
{
id: 5,
createdAt: "1675270634000",
},
{
id: 6,
createdAt: "1649383970000",
},
{
id: 7,
createdAt: "1659727918000",
},
],
},
{
id: 21,
name: "Melanie Beert",
profile: {
age: 45,
city: "Juiz de Fora",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1696694336000",
},
{
id: 2,
createdAt: "1673011863000",
},
{
id: 3,
createdAt: "1692228930000",
},
{
id: 4,
createdAt: "1617250001000",
},
{
id: 5,
createdAt: "1588248404000",
},
{
id: 6,
createdAt: "1690078115000",
},
],
},
{
id: 22,
name: "Alwin Van der Mark",
profile: {
age: 28,
city: "Covas",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1606531581000",
},
{
id: 2,
createdAt: "1636999924000",
},
{
id: 3,
createdAt: "1586394427000",
},
{
id: 4,
createdAt: "1594628404000",
},
{
id: 5,
createdAt: "1627975769000",
},
],
},
{
id: 23,
name: "Justen Pluvier",
profile: {
age: 49,
city: "Granadero Baigorria",
nationality: "Argentina",
},
interactions: [
{
id: 1,
createdAt: "1630847574000",
},
{
id: 2,
createdAt: "1624461187000",
},
{
id: 3,
createdAt: "1691133407000",
},
],
},
{
id: 24,
name: "Pen Blackmore",
profile: {
age: 20,
city: "Quatro Barras",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1695009945000",
},
],
},
{
id: 25,
name: "Britta Vaen",
profile: {
age: 33,
city: "Presa",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1592637567000",
},
{
id: 2,
createdAt: "1657986897000",
},
],
},
{
id: 26,
name: "Eldin Lilion",
profile: {
age: 61,
city: "Río Grande",
nationality: "Argentina",
},
interactions: [
{
id: 1,
createdAt: "1595606618000",
},
{
id: 2,
createdAt: "1608518229000",
},
{
id: 3,
createdAt: "1684548572000",
},
{
id: 4,
createdAt: "1610027836000",
},
{
id: 5,
createdAt: "1660861500000",
},
{
id: 6,
createdAt: "1698335238000",
},
{
id: 7,
createdAt: "1696551352000",
},
],
},
{
id: 27,
name: "Johnette Mogg",
profile: {
age: 58,
city: "St. Thomas",
nationality: "Canada",
},
interactions: [
{
id: 1,
createdAt: "1670355846000",
},
{
id: 2,
createdAt: "1621451524000",
},
{
id: 3,
createdAt: "1618420244000",
},
{
id: 4,
createdAt: "1582385013000",
},
{
id: 5,
createdAt: "1638558738000",
},
{
id: 6,
createdAt: "1583799784000",
},
{
id: 7,
createdAt: "1602600625000",
},
],
},
{
id: 28,
name: "Sandor Houdmont",
profile: {
age: 58,
city: "Tupaciguara",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1641330721000",
},
{
id: 2,
createdAt: "1664853677000",
},
{
id: 3,
createdAt: "1597148006000",
},
{
id: 4,
createdAt: "1614834529000",
},
{
id: 5,
createdAt: "1632695696000",
},
{
id: 6,
createdAt: "1602163141000",
},
{
id: 7,
createdAt: "1622890435000",
},
{
id: 8,
createdAt: "1692283629000",
},
{
id: 9,
createdAt: "1654200789000",
},
{
id: 10,
createdAt: "1650518680000",
},
],
},
{
id: 29,
name: "Maddy Ulster",
profile: {
age: 48,
city: "Federal",
nationality: "Argentina",
},
interactions: [
{
id: 1,
createdAt: "1679082505000",
},
{
id: 2,
createdAt: "1702939198000",
},
],
},
{
id: 30,
name: "Kerk Rominov",
profile: {
age: 70,
city: "Maracanaú",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1681440522000",
},
{
id: 2,
createdAt: "1601372032000",
},
{
id: 3,
createdAt: "1604677615000",
},
{
id: 4,
createdAt: "1614517925000",
},
{
id: 5,
createdAt: "1644141417000",
},
{
id: 6,
createdAt: "1649409291000",
},
{
id: 7,
createdAt: "1635055956000",
},
{
id: 8,
createdAt: "1614444343000",
},
{
id: 9,
createdAt: "1616832892000",
},
{
id: 10,
createdAt: "1629931411000",
},
],
},
{
id: 31,
name: "Patten Duffer",
profile: {
age: 44,
city: "Criciúma",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1580226079000",
},
{
id: 2,
createdAt: "1665036360000",
},
{
id: 3,
createdAt: "1700344784000",
},
],
},
{
id: 32,
name: "Henrietta Pyrton",
profile: {
age: 69,
city: "Leceia",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1667124819000",
},
{
id: 2,
createdAt: "1689582633000",
},
{
id: 3,
createdAt: "1674641327000",
},
{
id: 4,
createdAt: "1691073390000",
},
{
id: 5,
createdAt: "1646412564000",
},
{
id: 6,
createdAt: "1640329692000",
},
{
id: 7,
createdAt: "1626426060000",
},
],
},
{
id: 33,
name: "Onfroi Zimmerman",
profile: {
age: 25,
city: "La Viña",
nationality: "Argentina",
},
interactions: [
{
id: 1,
createdAt: "1584729506000",
},
{
id: 2,
createdAt: "1689248284000",
},
{
id: 3,
createdAt: "1696826911000",
},
{
id: 4,
createdAt: "1700064090000",
},
{
id: 5,
createdAt: "1653691852000",
},
{
id: 6,
createdAt: "1675609802000",
},
{
id: 7,
createdAt: "1662955069000",
},
{
id: 8,
createdAt: "1647934876000",
},
],
},
{
id: 34,
name: "Dill Bugs",
profile: {
age: 52,
city: "Hirado",
nationality: "Japan",
},
interactions: [
{
id: 1,
createdAt: "1647123134000",
},
{
id: 2,
createdAt: "1605718730000",
},
{
id: 3,
createdAt: "1604605207000",
},
{
id: 4,
createdAt: "1589481457000",
},
{
id: 5,
createdAt: "1686909018000",
},
{
id: 6,
createdAt: "1669881327000",
},
{
id: 7,
createdAt: "1695113192000",
},
{
id: 8,
createdAt: "1604585685000",
},
{
id: 9,
createdAt: "1584810053000",
},
{
id: 10,
createdAt: "1657982131000",
},
],
},
{
id: 35,
name: "Claudette Reeks",
profile: {
age: 57,
city: "Ryūgasaki",
nationality: "Japan",
},
interactions: [
{
id: 1,
createdAt: "1666969779000",
},
],
},
{
id: 36,
name: "Denis Brezlaw",
profile: {
age: 22,
city: "Medina",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1579266617000",
},
{
id: 2,
createdAt: "1634329657000",
},
{
id: 3,
createdAt: "1646674711000",
},
{
id: 4,
createdAt: "1667120821000",
},
],
},
{
id: 37,
name: "Roxane Rossbrook",
profile: {
age: 41,
city: "Itapetinga",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1588482852000",
},
{
id: 2,
createdAt: "1643208148000",
},
{
id: 3,
createdAt: "1647905810000",
},
{
id: 4,
createdAt: "1691684817000",
},
{
id: 5,
createdAt: "1675394065000",
},
{
id: 6,
createdAt: "1583403640000",
},
{
id: 7,
createdAt: "1589894651000",
},
{
id: 8,
createdAt: "1647447628000",
},
{
id: 9,
createdAt: "1672014691000",
},
{
id: 10,
createdAt: "1703460825000",
},
],
},
{
id: 38,
name: "Danni Tatters",
profile: {
age: 26,
city: "Coruripe",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1622760843000",
},
{
id: 2,
createdAt: "1692251360000",
},
{
id: 3,
createdAt: "1621764351000",
},
{
id: 4,
createdAt: "1688646852000",
},
],
},
{
id: 39,
name: "Brien Barnewelle",
profile: {
age: 48,
city: "São Bento",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1595482229000",
},
{
id: 2,
createdAt: "1629933173000",
},
],
},
{
id: 40,
name: "Erie Giral",
profile: {
age: 55,
city: "Setaka",
nationality: "Japan",
},
interactions: [
{
id: 1,
createdAt: "1678500489000",
},
],
},
{
id: 41,
name: "Karin Roos",
profile: {
age: 33,
city: "Sabugo",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1586751632000",
},
{
id: 2,
createdAt: "1652858848000",
},
],
},
{
id: 42,
name: "Karylin Prall",
profile: {
age: 32,
city: "São Bartolomeu",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1593180785000",
},
{
id: 2,
createdAt: "1597970605000",
},
],
},
{
id: 43,
name: "Nessie Newman",
profile: {
age: 54,
city: "Outlook",
nationality: "Canada",
},
interactions: [
{
id: 1,
createdAt: "1696569926000",
},
{
id: 2,
createdAt: "1680252557000",
},
{
id: 3,
createdAt: "1626714170000",
},
],
},
{
id: 44,
name: "Kliment Lavrinov",
profile: {
age: 34,
city: "Katsuura",
nationality: "Japan",
},
interactions: [
{
id: 1,
createdAt: "1587779300000",
},
{
id: 2,
createdAt: "1594101057000",
},
{
id: 3,
createdAt: "1663811935000",
},
{
id: 4,
createdAt: "1627993133000",
},
{
id: 5,
createdAt: "1633474410000",
},
{
id: 6,
createdAt: "1629375139000",
},
],
},
{
id: 45,
name: "Artemas Basnall",
profile: {
age: 21,
city: "Louveira",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1675103081000",
},
{
id: 2,
createdAt: "1610976340000",
},
{
id: 3,
createdAt: "1685568521000",
},
{
id: 4,
createdAt: "1622337854000",
},
{
id: 5,
createdAt: "1640792903000",
},
{
id: 6,
createdAt: "1660529814000",
},
{
id: 7,
createdAt: "1627128988000",
},
{
id: 8,
createdAt: "1688179536000",
},
],
},
{
id: 46,
name: "Dennie Glede",
profile: {
age: 31,
city: "Brumadinho",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1643877627000",
},
],
},
{
id: 47,
name: "Tiffie Tremayle",
profile: {
age: 62,
city: "Campana",
nationality: "Argentina",
},
interactions: [
{
id: 1,
createdAt: "1631916358000",
},
{
id: 2,
createdAt: "1581178348000",
},
],
},
{
id: 48,
name: "Floyd Milbourn",
profile: {
age: 59,
city: "Ponta Delgada",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1679014572000",
},
{
id: 2,
createdAt: "1598083818000",
},
{
id: 3,
createdAt: "1684805031000",
},
{
id: 4,
createdAt: "1603176987000",
},
{
id: 5,
createdAt: "1661131432000",
},
{
id: 6,
createdAt: "1630307424000",
},
],
},
{
id: 49,
name: "Hirsch Rake",
profile: {
age: 35,
city: "Ibicaraí",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1635041718000",
},
{
id: 2,
createdAt: "1587610876000",
},
{
id: 3,
createdAt: "1680832637000",
},
{
id: 4,
createdAt: "1654174231000",
},
{
id: 5,
createdAt: "1648996254000",
},
{
id: 6,
createdAt: "1607349226000",
},
],
},
{
id: 50,
name: "Donn Beevis",
profile: {
age: 43,
city: "Roriz",
nationality: "Portugal",
},
interactions: [],
},
{
id: 51,
name: "Joli Happel",
profile: {
age: 59,
city: "Vale",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1642191380000",
},
{
id: 2,
createdAt: "1630346059000",
},
{
id: 3,
createdAt: "1660540567000",
},
{
id: 4,
createdAt: "1692998181000",
},
{
id: 5,
createdAt: "1586024639000",
},
{
id: 6,
createdAt: "1675713408000",
},
],
},
{
id: 52,
name: "Deirdre Leeman",
profile: {
age: 64,
city: "Vila Chã do Monte",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1690128078000",
},
],
},
{
id: 53,
name: "Vladimir Beaford",
profile: {
age: 50,
city: "Francisco Beltrão",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1701020527000",
},
{
id: 2,
createdAt: "1632917931000",
},
{
id: 3,
createdAt: "1608277530000",
},
{
id: 4,
createdAt: "1595089688000",
},
{
id: 5,
createdAt: "1622158778000",
},
{
id: 6,
createdAt: "1605493879000",
},
{
id: 7,
createdAt: "1579634644000",
},
{
id: 8,
createdAt: "1603585337000",
},
{
id: 9,
createdAt: "1652978532000",
},
],
},
{
id: 54,
name: "Chilton Russell",
profile: {
age: 35,
city: "Innisfil",
nationality: "Canada",
},
interactions: [
{
id: 1,
createdAt: "1614184922000",
},
{
id: 2,
createdAt: "1644720044000",
},
],
},
{
id: 55,
name: "Dante Jennick",
profile: {
age: 26,
city: "Kamiichi",
nationality: "Japan",
},
interactions: [
{
id: 1,
createdAt: "1703674361000",
},
{
id: 2,
createdAt: "1590325818000",
},
{
id: 3,
createdAt: "1642808684000",
},
{
id: 4,
createdAt: "1694184631000",
},
{
id: 5,
createdAt: "1589993375000",
},
{
id: 6,
createdAt: "1698147235000",
},
],
},
{
id: 56,
name: "Sybil Melby",
profile: {
age: 68,
city: "São Bento",
nationality: "Brazil",
},
interactions: [],
},
{
id: 57,
name: "Omar Smithies",
profile: {
age: 18,
city: "Corumbá",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1644073305000",
},
],
},
{
id: 58,
name: "Ainsley McMeeking",
profile: {
age: 70,
city: "Oyabe",
nationality: "Japan",
},
interactions: [
{
id: 1,
createdAt: "1671192873000",
},
{
id: 2,
createdAt: "1578246584000",
},
{
id: 3,
createdAt: "1606367200000",
},
{
id: 4,
createdAt: "1683114162000",
},
],
},
{
id: 59,
name: "Brittni Bown",
profile: {
age: 67,
city: "Cabrobó",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1604210731000",
},
{
id: 2,
createdAt: "1594160345000",
},
{
id: 3,
createdAt: "1628597368000",
},
{
id: 4,
createdAt: "1620447097000",
},
],
},
{
id: 60,
name: "Nonah Kordes",
profile: {
age: 37,
city: "Sete Lagoas",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1685571401000",
},
{
id: 2,
createdAt: "1594407928000",
},
{
id: 3,
createdAt: "1664972694000",
},
{
id: 4,
createdAt: "1676626239000",
},
],
},
{
id: 61,
name: "Kara Kingscott",
profile: {
age: 23,
city: "Trindade",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1649872600000",
},
{
id: 2,
createdAt: "1677091738000",
},
{
id: 3,
createdAt: "1606717451000",
},
],
},
{
id: 62,
name: "Bianka McCaughran",
profile: {
age: 44,
city: "Dalmacio Vélez Sársfield",
nationality: "Argentina",
},
interactions: [
{
id: 1,
createdAt: "1669816636000",
},
{
id: 2,
createdAt: "1685616408000",
},
{
id: 3,
createdAt: "1657198964000",
},
{
id: 4,
createdAt: "1609485254000",
},
{
id: 5,
createdAt: "1703415696000",
},
{
id: 6,
createdAt: "1648025882000",
},
{
id: 7,
createdAt: "1600232198000",
},
],
},
{
id: 63,
name: "Malcolm Eddington",
profile: {
age: 22,
city: "Várzea da Serra",
nationality: "Portugal",
},
interactions: [],
},
{
id: 64,
name: "Tabby Skillen",
profile: {
age: 61,
city: "Porta",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1667257984000",
},
{
id: 2,
createdAt: "1678684091000",
},
{
id: 3,
createdAt: "1590059843000",
},
{
id: 4,
createdAt: "1688415151000",
},
{
id: 5,
createdAt: "1655120921000",
},
{
id: 6,
createdAt: "1618580126000",
},
{
id: 7,
createdAt: "1591817341000",
},
{
id: 8,
createdAt: "1653440794000",
},
{
id: 9,
createdAt: "1633565075000",
},
{
id: 10,
createdAt: "1655238427000",
},
],
},
{
id: 65,
name: "Stella Trenchard",
profile: {
age: 45,
city: "Pedra Furada",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1686596410000",
},
{
id: 2,
createdAt: "1693083912000",
},
{
id: 3,
createdAt: "1622449936000",
},
{
id: 4,
createdAt: "1651227347000",
},
{
id: 5,
createdAt: "1669366919000",
},
{
id: 6,
createdAt: "1587427065000",
},
{
id: 7,
createdAt: "1604983525000",
},
{
id: 8,
createdAt: "1646019394000",
},
{
id: 9,
createdAt: "1612279916000",
},
],
},
{
id: 66,
name: "Leroi Neicho",
profile: {
age: 57,
city: "Hantsport",
nationality: "Canada",
},
interactions: [
{
id: 1,
createdAt: "1643205493000",
},
{
id: 2,
createdAt: "1657128398000",
},
{
id: 3,
createdAt: "1603007388000",
},
{
id: 4,
createdAt: "1633804466000",
},
],
},
{
id: 67,
name: "Reynolds Crevy",
profile: {
age: 55,
city: "Araci",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1630176019000",
},
],
},
{
id: 68,
name: "Franny McPaik",
profile: {
age: 44,
city: "Pedro Leopoldo",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1636775680000",
},
{
id: 2,
createdAt: "1582502451000",
},
{
id: 3,
createdAt: "1653341304000",
},
{
id: 4,
createdAt: "1579613654000",
},
],
},
{
id: 69,
name: "Edan Watson-Brown",
profile: {
age: 49,
city: "Gualeguay",
nationality: "Argentina",
},
interactions: [
{
id: 1,
createdAt: "1644891109000",
},
{
id: 2,
createdAt: "1679927076000",
},
{
id: 3,
createdAt: "1599514301000",
},
{
id: 4,
createdAt: "1670457512000",
},
{
id: 5,
createdAt: "1692836317000",
},
{
id: 6,
createdAt: "1635410948000",
},
{
id: 7,
createdAt: "1604994882000",
},
{
id: 8,
createdAt: "1579032075000",
},
{
id: 9,
createdAt: "1624965953000",
},
{
id: 10,
createdAt: "1653877634000",
},
],
},
{
id: 70,
name: "Silvan McCahill",
profile: {
age: 62,
city: "Rancharia",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1631149448000",
},
{
id: 2,
createdAt: "1598285159000",
},
{
id: 3,
createdAt: "1584132228000",
},
{
id: 4,
createdAt: "1610631572000",
},
{
id: 5,
createdAt: "1646470124000",
},
{
id: 6,
createdAt: "1677136192000",
},
{
id: 7,
createdAt: "1650130991000",
},
{
id: 8,
createdAt: "1658609494000",
},
{
id: 9,
createdAt: "1630028588000",
},
],
},
{
id: 71,
name: "Dulcine Widdall",
profile: {
age: 41,
city: "Calgary",
nationality: "Canada",
},
interactions: [
{
id: 1,
createdAt: "1628056939000",
},
{
id: 2,
createdAt: "1583127570000",
},
{
id: 3,
createdAt: "1682922358000",
},
{
id: 4,
createdAt: "1599940596000",
},
{
id: 5,
createdAt: "1602475646000",
},
{
id: 6,
createdAt: "1671619569000",
},
{
id: 7,
createdAt: "1657215684000",
},
{
id: 8,
createdAt: "1654067827000",
},
],
},
{
id: 72,
name: "Sergent Collet",
profile: {
age: 63,
city: "Aldeia da Bela Vista",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1623520207000",
},
{
id: 2,
createdAt: "1627753277000",
},
{
id: 3,
createdAt: "1593283185000",
},
{
id: 4,
createdAt: "1616572610000",
},
],
},
{
id: 73,
name: "Estevan Cicculini",
profile: {
age: 23,
city: "Lago da Pedra",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1585982179000",
},
{
id: 2,
createdAt: "1597118769000",
},
{
id: 3,
createdAt: "1610369516000",
},
{
id: 4,
createdAt: "1673431315000",
},
{
id: 5,
createdAt: "1701266431000",
},
{
id: 6,
createdAt: "1607529009000",
},
{
id: 7,
createdAt: "1620948520000",
},
{
id: 8,
createdAt: "1689257273000",
},
{
id: 9,
createdAt: "1632470100000",
},
],
},
{
id: 74,
name: "Temp Polglase",
profile: {
age: 29,
city: "Capanema",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1596090785000",
},
{
id: 2,
createdAt: "1686448258000",
},
{
id: 3,
createdAt: "1610569677000",
},
{
id: 4,
createdAt: "1655710464000",
},
{
id: 5,
createdAt: "1648574154000",
},
{
id: 6,
createdAt: "1670976520000",
},
{
id: 7,
createdAt: "1645051476000",
},
{
id: 8,
createdAt: "1579658945000",
},
{
id: 9,
createdAt: "1606723223000",
},
{
id: 10,
createdAt: "1690569994000",
},
],
},
{
id: 75,
name: "Merl Flight",
profile: {
age: 51,
city: "Ōyama",
nationality: "Japan",
},
interactions: [
{
id: 1,
createdAt: "1655070069000",
},
{
id: 2,
createdAt: "1645817298000",
},
{
id: 3,
createdAt: "1620802096000",
},
{
id: 4,
createdAt: "1680322954000",
},
{
id: 5,
createdAt: "1674961492000",
},
{
id: 6,
createdAt: "1675949994000",
},
],
},
{
id: 76,
name: "Marcus Teeney",
profile: {
age: 58,
city: "Novo Aripuanã",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1678650579000",
},
{
id: 2,
createdAt: "1683927211000",
},
{
id: 3,
createdAt: "1613290085000",
},
{
id: 4,
createdAt: "1701665011000",
},
{
id: 5,
createdAt: "1638499263000",
},
{
id: 6,
createdAt: "1642337434000",
},
{
id: 7,
createdAt: "1655386919000",
},
{
id: 8,
createdAt: "1615430797000",
},
],
},
{
id: 77,
name: "Kala Durtnal",
profile: {
age: 20,
city: "Vinhas",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1684939198000",
},
{
id: 2,
createdAt: "1642056374000",
},
{
id: 3,
createdAt: "1667282615000",
},
{
id: 4,
createdAt: "1658787637000",
},
{
id: 5,
createdAt: "1685645244000",
},
{
id: 6,
createdAt: "1579418455000",
},
],
},
{
id: 78,
name: "Mercie Witton",
profile: {
age: 34,
city: "Pinhal Novo",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1661606090000",
},
{
id: 2,
createdAt: "1653979630000",
},
],
},
{
id: 79,
name: "Corney Breslane",
profile: {
age: 62,
city: "Rio Formoso",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1579394615000",
},
{
id: 2,
createdAt: "1702043286000",
},
{
id: 3,
createdAt: "1643090773000",
},
{
id: 4,
createdAt: "1643810789000",
},
{
id: 5,
createdAt: "1699235004000",
},
],
},
{
id: 80,
name: "Olva Bernaert",
profile: {
age: 35,
city: "Campina Grande",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1672134417000",
},
{
id: 2,
createdAt: "1590546016000",
},
{
id: 3,
createdAt: "1588608061000",
},
{
id: 4,
createdAt: "1694299785000",
},
{
id: 5,
createdAt: "1622697815000",
},
{
id: 6,
createdAt: "1692847280000",
},
{
id: 7,
createdAt: "1594047474000",
},
],
},
{
id: 81,
name: "Brandise Albro",
profile: {
age: 57,
city: "Palmas De Gran Canaria, Las",
nationality: "Spain",
},
interactions: [
{
id: 1,
createdAt: "1620494177000",
},
{
id: 2,
createdAt: "1629517442000",
},
{
id: 3,
createdAt: "1643505142000",
},
{
id: 4,
createdAt: "1700013951000",
},
{
id: 5,
createdAt: "1672325206000",
},
{
id: 6,
createdAt: "1581475366000",
},
],
},
{
id: 82,
name: "Davy Backhouse",
profile: {
age: 24,
city: "Shinshiro",
nationality: "Japan",
},
interactions: [
{
id: 1,
createdAt: "1592227661000",
},
{
id: 2,
createdAt: "1628799366000",
},
{
id: 3,
createdAt: "1684924319000",
},
{
id: 4,
createdAt: "1578571519000",
},
{
id: 5,
createdAt: "1697926047000",
},
{
id: 6,
createdAt: "1703882563000",
},
{
id: 7,
createdAt: "1665627205000",
},
{
id: 8,
createdAt: "1674151291000",
},
{
id: 9,
createdAt: "1665954522000",
},
{
id: 10,
createdAt: "1605619203000",
},
],
},
{
id: 83,
name: "Camey Maron",
profile: {
age: 29,
city: "Prado",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1624805934000",
},
],
},
{
id: 84,
name: "Giustino Waghorn",
profile: {
age: 43,
city: "Toyama-shi",
nationality: "Japan",
},
interactions: [
{
id: 1,
createdAt: "1689826706000",
},
{
id: 2,
createdAt: "1618486874000",
},
{
id: 3,
createdAt: "1622285499000",
},
],
},
{
id: 85,
name: "Cora Mapowder",
profile: {
age: 44,
city: "Itajaí",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1682206392000",
},
],
},
{
id: 86,
name: "Tammi Lorrain",
profile: {
age: 63,
city: "Kobayashi",
nationality: "Japan",
},
interactions: [
{
id: 1,
createdAt: "1695716231000",
},
{
id: 2,
createdAt: "1670407916000",
},
{
id: 3,
createdAt: "1703699965000",
},
{
id: 4,
createdAt: "1618654486000",
},
{
id: 5,
createdAt: "1660188967000",
},
{
id: 6,
createdAt: "1638036119000",
},
{
id: 7,
createdAt: "1649660295000",
},
{
id: 8,
createdAt: "1600402419000",
},
{
id: 9,
createdAt: "1631843795000",
},
{
id: 10,
createdAt: "1619475794000",
},
],
},
{
id: 87,
name: "Esmaria De Beneditti",
profile: {
age: 35,
city: "Tendō",
nationality: "Japan",
},
interactions: [
{
id: 1,
createdAt: "1598693278000",
},
{
id: 2,
createdAt: "1640571044000",
},
{
id: 3,
createdAt: "1668631214000",
},
{
id: 4,
createdAt: "1615098694000",
},
{
id: 5,
createdAt: "1628862462000",
},
{
id: 6,
createdAt: "1601264325000",
},
{
id: 7,
createdAt: "1592453033000",
},
{
id: 8,
createdAt: "1636322574000",
},
{
id: 9,
createdAt: "1639096201000",
},
],
},
{
id: 88,
name: "Fax Fraschetti",
profile: {
age: 55,
city: "Piquillín",
nationality: "Argentina",
},
interactions: [
{
id: 1,
createdAt: "1703077913000",
},
{
id: 2,
createdAt: "1597434336000",
},
{
id: 3,
createdAt: "1596669045000",
},
],
},
{
id: 89,
name: "Zedekiah Glewe",
profile: {
age: 54,
city: "Pôsto Fiscal Rolim de Moura",
nationality: "Brazil",
},
interactions: [],
},
{
id: 90,
name: "West Swancott",
profile: {
age: 35,
city: "Covão",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1637147325000",
},
{
id: 2,
createdAt: "1615930972000",
},
{
id: 3,
createdAt: "1614019775000",
},
{
id: 4,
createdAt: "1674628893000",
},
{
id: 5,
createdAt: "1615660060000",
},
{
id: 6,
createdAt: "1627269353000",
},
],
},
{
id: 91,
name: "Brianna Leatherland",
profile: {
age: 45,
city: "Cruzeiro",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1634081904000",
},
{
id: 2,
createdAt: "1656183936000",
},
{
id: 3,
createdAt: "1678743713000",
},
{
id: 4,
createdAt: "1645555279000",
},
{
id: 5,
createdAt: "1665126912000",
},
],
},
{
id: 92,
name: "Brad Metcalfe",
profile: {
age: 32,
city: "Beaumont",
nationality: "Canada",
},
interactions: [
{
id: 1,
createdAt: "1683183286000",
},
{
id: 2,
createdAt: "1581945742000",
},
{
id: 3,
createdAt: "1694695763000",
},
{
id: 4,
createdAt: "1598768694000",
},
{
id: 5,
createdAt: "1648739146000",
},
{
id: 6,
createdAt: "1663674606000",
},
{
id: 7,
createdAt: "1630968059000",
},
{
id: 8,
createdAt: "1679516635000",
},
],
},
{
id: 93,
name: "Carolynn Banham",
profile: {
age: 52,
city: "Marcos Juárez",
nationality: "Argentina",
},
interactions: [],
},
{
id: 94,
name: "Sarena Borrie",
profile: {
age: 41,
city: "Ponte Nova",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1588835938000",
},
],
},
{
id: 95,
name: "Julianne Durno",
profile: {
age: 69,
city: "Apodi",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1649366520000",
},
{
id: 2,
createdAt: "1645608001000",
},
{
id: 3,
createdAt: "1697186320000",
},
{
id: 4,
createdAt: "1672443595000",
},
{
id: 5,
createdAt: "1643646716000",
},
],
},
{
id: 96,
name: "Evelin De Freyne",
profile: {
age: 69,
city: "Castanheira do Campo",
nationality: "Portugal",
},
interactions: [
{
id: 1,
createdAt: "1621347384000",
},
{
id: 2,
createdAt: "1657571361000",
},
{
id: 3,
createdAt: "1579152740000",
},
{
id: 4,
createdAt: "1668461854000",
},
{
id: 5,
createdAt: "1684143958000",
},
{
id: 6,
createdAt: "1626978338000",
},
{
id: 7,
createdAt: "1654528150000",
},
{
id: 8,
createdAt: "1692118774000",
},
{
id: 9,
createdAt: "1634975867000",
},
{
id: 10,
createdAt: "1691133095000",
},
],
},
{
id: 97,
name: "Ailsun Scurfield",
profile: {
age: 19,
city: "Ibaraki",
nationality: "Japan",
},
interactions: [
{
id: 1,
createdAt: "1603569333000",
},
{
id: 2,
createdAt: "1689669643000",
},
{
id: 3,
createdAt: "1677200141000",
},
{
id: 4,
createdAt: "1666719305000",
},
{
id: 5,
createdAt: "1670126000000",
},
{
id: 6,
createdAt: "1581071331000",
},
{
id: 7,
createdAt: "1695664034000",
},
{
id: 8,
createdAt: "1696789709000",
},
{
id: 9,
createdAt: "1607374482000",
},
{
id: 10,
createdAt: "1638797569000",
},
],
},
{
id: 98,
name: "Allie Pedder",
profile: {
age: 47,
city: "Aki",
nationality: "Japan",
},
interactions: [
{
id: 1,
createdAt: "1656610225000",
},
{
id: 2,
createdAt: "1681917073000",
},
{
id: 3,
createdAt: "1668429068000",
},
{
id: 4,
createdAt: "1670649995000",
},
{
id: 5,
createdAt: "1653366486000",
},
{
id: 6,
createdAt: "1673060008000",
},
{
id: 7,
createdAt: "1616186820000",
},
{
id: 8,
createdAt: "1579464224000",
},
{
id: 9,
createdAt: "1605972870000",
},
],
},
{
id: 99,
name: "Averil Belasco",
profile: {
age: 23,
city: "Nova Viçosa",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1635247487000",
},
{
id: 2,
createdAt: "1590526020000",
},
{
id: 3,
createdAt: "1681059183000",
},
{
id: 4,
createdAt: "1680522026000",
},
{
id: 5,
createdAt: "1667333583000",
},
],
},
{
id: 100,
name: "Shelley Battista",
profile: {
age: 32,
city: "Sydney",
nationality: "Australia",
},
interactions: [
{
id: 1,
createdAt: "1683471492000",
},
{
id: 2,
createdAt: "1628630162000",
},
{
id: 3,
createdAt: "1618697052000",
},
{
id: 4,
createdAt: "1659085332000",
},
{
id: 5,
createdAt: "1644450022000",
},
{
id: 6,
createdAt: "1596243952000",
},
{
id: 7,
createdAt: "1579067435000",
},
{
id: 8,
createdAt: "1686778294000",
},
{
id: 9,
createdAt: "1589405868000",
},
],
},
{
id: 100,
name: "Averil Belasco",
profile: {
age: 23,
city: "Nova Viçosa",
nationality: "Brazil",
},
interactions: [
{
id: 1,
createdAt: "1635247487000",
},
{
id: 2,
createdAt: "1590526020000",
},
{
id: 3,
createdAt: "1681059183000",
},
{
id: 4,
createdAt: "1680522026000",
},
{
id: 5,
createdAt: "1667333583000",
},
],
},
];
const words = ["Nova", "Novo", "São", "Santo"];
const regex = new RegExp(words.join("|"));
const res = people
.reduce((prev, curr) => {
if (!prev.find((item) => item.id === curr.id)) {
prev.push(curr);
if (curr.interactions) {
curr.interactions = curr.interactions.length;
}
}
return prev;
}, [])
.filter(
(person) =>
person.profile.age > 10 &&
person.profile.age < 60 &&
person.interactions > 2 &&
regex.test(person.profile.city) &&
!["Portugal", "Spain", "Canada", "Japan"].includes(person.profile.nationality)
)
.sort((a, b) => b.name - a.name);
console.log(res);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment