A method for repeating data (arrays) in JavaScript

Source: Internet
Author: User
Tags arrays

Recently in the process of doing the project will always encounter the problem of data array, after several changes in the program are summarized as follows:

Data to go heavy

The code is as follows

var zdata = [];
Cityaname = Result.aname;
Isp_cityname = $ ('. Isp_cityname ' + monitorip_arr[num]). HTML ();
if (Zdata[cityaname]) {
Zdata[cityaname][zdata[cityaname].length] = {"Value": Result.totaltime, "name": Isp_cityname, "Stateinitcolor": "3"};
} else {
Zdata[cityaname] = [];
Zdata[cityaname][0] = {"Value": Result.totaltime, "name": Isp_cityname, "Stateinitcolor": "5"};
}

PHP can also use this idea, and PHP is much simpler than JS ...

Array to weight

code as follows  


//second method
Array.prototype.distinct=function () {
var Newarr=this.concat (). Sort (), self=this;
Newarr.sort (function (a,b) {
var n;
if (a===b) {
N=self.indexof (a);
Self.splice (n,1);
}
});
return self;
}
Console.log ([1,2,2,3, ' 5 ', 6,5,6,6,15,5, ' 5 ', 5, ', ', '].distinct ());

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.