Skip to content

Latest commit

 

History

History
39 lines (35 loc) · 674 Bytes

README.md

File metadata and controls

39 lines (35 loc) · 674 Bytes

Array Unique Reactjs

Npm package that works to convert data to unique arrays. In other words the package to remove the existing data duplication in the data array.

Example

import getUnique from "array-unique-reactjs";

const prizelips = [
  {
    title: "40M",
    price: 5000,
  },
  {
    title: "100M",
    price: 30000,
  },
  {
    title: "350M",
    price: 100000,
  },
  {
    title: "1B",
    price: 100000,
  },
  {
    title: "2.5B",
    price: 200000,
  },
];

const uniquePrize = getUnique(prizelips, "price");

function Test() {
  return (
    uniquePrize.map((item) => console.log(item.price))
    // Output : 5000, 30000, 100000, 200000
  );
}