Get Unique values from array/object in javascript
javascript
unique
remove repeated values from array
Here is the sample array
var Obj = [1,3,4,2,1,2,3,8]; var Obj = Obj.unique();
Result is
[1,3,4,2,8]
Add thease below lines in your script tag. The below code is remove duplicates from array/object
Array.prototype.contains = function(v) { for(var i = 0; i < this.length; i++) { if(this[i] === v) return true; } return false; }; Array.prototype.unique = function() { var arr = []; for(var i = 0; i < this.length; i++) { if(!arr.contains(this[i])) { arr.push(this[i]); } } return arr; };
You might also like:
Detect AdBlock with JavaScript in my browser30-07-2017 AdBlock javascript detect |
How to redirect one page to another page in php20-03-2017 redirect php |
How to upload file by using request module18-03-2017 request module node js |
Sanitization in java sript14-03-2017 sanitization java script |
Email validation regular expression in javascript22-02-2017 email validation regex |