Do not use loop to generate a length n=100, each item has a data type of number, and the value equals the array Arry of its subscript.

Source: Internet
Author: User

These two days in the group to see a group of UC international face test, while available, also over, the topic is as follows:

Simply done, the temporary implementation method is as follows:

①settimeout Timer

var i = 0,k = [],j;
function count () {
if (i > 100) {
Clearinterval (j);
Console.log (k);
}else{
K[i] = i++;
}
}
j = setinterval (function () {
Count ();
},20);

② recursion

var rr = []; function sum (n) {    if(n <) {        rr[n+1] = n + 1;         return sum (n+1);}    } Sum (0); Console.log (RR);

③map+join

var New Array (+), i = 0; var dd = Newarr.join (). Split (', ');dd. Map (function(item) {    if(i <)       {= i++;    }}); Console.log (NEWARR);

④array.apply (null,{length:100})

var newArr = array.apply (null, {length:100}), i = 0; Newarr.map (function(item, i) {    if(i <) {        = i++;}}    ); Console.log (NEWARR);

Think of this point for a moment, and think of a plus one at the back.

Do not use loop to generate a length n=100, each item has a data type of number, and the value equals the array Arry of its subscript.

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.