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:

Example for Conditional Operator in php

16-04-2017 php Conditional Operator example

How to redirect one page to another page in php

20-03-2017 redirect php

How to insert bulk information into database in single query execution

18-03-2017 insert sql bulk database

How to get current date and time (yyyy-mm-dd H:i:s) using javascript

09-03-2017 javascript date time

Send Mail in Node Js

21-02-2017 node js mail npm module