Nodejs Array Unique unique()

Here you can find the source of unique()

Method Source Code

Array.prototype.unique = function(){
    var temp = {};
    for (var i = 0; i < this.length; i++)
        temp[this[i]] = true;//from  w ww  . ja v  a2s . com
    var r = [];
    for (var k in temp)
        r.push(k);
    return r;
}

Related

  1. unique()
    function stringToBoolean(string) {
      switch(string.toLowerCase()) {
        case "true": case "yes": case "1": return true;
        case "false": case "no": case "0": case null: return false;
        default: return string;
    Array.prototype.unique = function() {
        var o = {},
    ...
    
  2. unique()
    Array.prototype.unique = function() {
      var a=[];
      for (var b = 0; b < this.length; b++) {
        if(a.indexOf(this[b]) == -1) {
          a.push(this[b])
      return a
    
  3. unique()
    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;
    function lowestUnique(str) {
      var arr = str.split(" ");
      var length = arr.length;
      var mapObj = {};
      var uniqueArr = arr.unique();
      for (var i = 0; i < length; i++) {
        mapObj[arr[i]] = 1 + (mapObj[arr[i]] || 0);
      var lowestNum = 100000000000;
      for (var n = 0; n < uniqueArr.length; n++) {
        if (mapObj[uniqueArr[n]] == 1) {
          if (lowestNum > uniqueArr[n]) {
            lowestNum = uniqueArr[n];
      if (lowestNum === 100000000000) {
        console.log(0);
      } else {
        arr.filter(function(e, ind, array) {
          if (e == lowestNum) {
            console.log(ind + 1);
        });
    
  4. unique()
    Array.prototype.unique = function() {
      var json = {};
      var res = [];
      for(var i = 0;i < this.length;i++) {
        if(!json[this[i]]) {
          res.push(this[i]);
          json[this[i]] = true;
      console.log(json);
      return res;
    var a = [1,2,3,3,2,1,4,4,0,7,7,7,7,7];
    console.log(a.unique());
    
  5. unique()
    Array.prototype.unique = function() {
      var output = {};
      for (var key = 0; key < this.length; key++) {
        output[this[key]] = this[key];
      var results = [];
      for (key in output) {
        var value = output[key];
        results.push(value);
    ...
    
  6. unique()
    Array.prototype.unique = function () {
      var tmp = {}, result = [];
      for (var i = 0; i < this.length; i++) {
        if (!tmp[this[i]]) {
          result.push(this[i]);
          tmp[this[i]] = true;
      return result;
    ...
    
  7. unique()
    var fs = require('fs');
    Array.prototype.unique = function() {
      var res = [],
        hash = {};
      for (var i = 0, elem;
        (elem = this[i]) != null; i++) {
        if (!hash[elem]) {
          res.push(elem);
          hash[elem] = true;
    ...
    
  8. unique()
    Array.prototype.unique = function() {
        var newArr = [],
            origLen = this.length,
            found, x, y;
        for (x = 0; x < origLen; x++) {
            found = undefined;
            for (y = 0; y < newArr.length; y++) {
                if (this[x] === newArr[y]) {
                    found = true;
    ...
    
  9. unique()
    Array.prototype.unique = function() {
        return this.reduce(function(accum, current) {
            if (accum.indexOf(current) < 0) {
                accum.push(current);
            return accum;
        }, []);
    };
    function mutation(arr) {
    ...