Borrowing chickens to give birth to eggs in JavaScript

Source: Internet
Author: User

Title said, in fact, refers to JS in the built-in function and apply the combination of use. This usage is very flattering, read the jQuery source of the small partners know, it is applied in the very wide and exquisite!

Pear: Find the maximum and minimum values in an array

The common practice is to iterate through the array, compare, write out the code looked like pomegranate sister, although a beautiful woman, but always feel a little awkward, how to turn her into like Chou-Heung as graceful and charming? Do you remember Math.max?

var numbers = [5, 6, 2, 3, 7]; /*  */var max = Math.max.apply(null/*/var min = Math.min.apply (null, numbers);

What if the array is large? Cut it into a loop.

function Minofarray (arr) {  var min = Infinity;   var QUANTUM = 32768;    for (var i = 0, len = arr.length; i < len; i + = QUANTUM)    {var submin = Math.min.appl Y (null, Arr.slice (i, math.min (i + QUANTUM, Len)));     = math.min (submin, Min);  }   return min;} var min = Minofarray ([5, 6, 2, 3, 7]);

Reference: MDN

Borrowing chickens to give birth to eggs in JavaScript

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.