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:
How to insert bulk information into database in single query execution18-03-2017 insert sql bulk database |
Convert Time 24 hrs to 12 hrs format In javascript12-03-2017 date javascript 12hrs convert |
Get previous date from given date in javascript06-03-2017 date javascript previous date |
Filter for change Date Time format (MM-dd-yyyy HH:mm) in Angular Js05-03-2017 mm-dd-yyyy HH:MM date formats angular js |
Email validation regular expression in javascript22-02-2017 email validation regex |