How to Get Unique Values from Array in JQuery?
Today, i will give you example of get unique values from json array in jquery. you will understand how to get get unique values from array in Jquery. we can easily get distinct values from array jquery.
After long time i am going to write jquery post with json array. here i decide to give you simple of getting unique values from jquery array. most of projects we need to work with json array and manage it different way.
So, here i will give you very simple example of jquery get unique values from json array with output.
Solution:
var uniqueSites = sites.filter(function(item, i, sites) {
return i == sites.indexOf(item);
});
Example:
<!DOCTYPE html>
<html>
<head>
<title>How to get unique values from array in Jquery? - ItSolutionStuff.com</title>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
</head>
<body>
<script type="text/javascript">
var sites = [ "ItSolutionStuff.com", "HDTuto.com", "NiceSnippets.com", "ItSolutionStuff.com" ];
var uniqueSites = sites.filter(function(item, i, sites) {
return i == sites.indexOf(item);
});
console.log(uniqueSites);
</script>
</body>
</html>
Output:
["ItSolutionStuff.com", "HDTuto.com", "NiceSnippets.com"]
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- JQuery Open Link in New Tab on Click Example
- JQuery Open Link in New Window Example
- How to Remove Key Value from Array using JQuery?
- How to Convert Array to JSON in PHP?
- How to Get Last Element from Array using JQuery?
- JQuery Check If Value Exists or Not in Array Example
- How to Remove Empty or Null Values from JSON using JQuery?
- How to Check If Key Exists in JSON Object using JQuery?
- How to Disable F5 Refresh Button using JQuery?
- Add Edit Delete Table Row Example using JQuery
- How to Disable Browser Back Button using JQuery?
- How to Remove Empty or Null Values from Array in JQuery?
- JQuery - How to Push Specific Key and Value in Array?
- How to Parse JSON in JQuery Ajax?
- How to Check Undefined, Empty and Null in JQuery?