JS function usage example, js function usage example

Source: Internet
Author: User

JS function usage example, js function usage example

This document describes how to use JS functions as values. We will share this with you for your reference. The details are as follows:

function callSomeFunction(someFunction,someArgument){   return someFunction(someArgument);}

This function accepts two parameters. The first function should be a function, and the second parameter should be a value to be passed to the function. This function is universal.

For example:

function add10(num){  return num+10;}var result = callSomeFunction(add10,10);alert(result) //20

Returns another function from a function (an extremely useful technique), such:

Create a comparison function:

function createComparisonFunction(propertyName){   return function (object1,object2){       var value1 = object1[propertyName];        var value2 = object2[propertyName];        if(value1 < value2){           return -1;        } else if(value1 > value2){           return 1;        } else{           return 0;        }   };}

Example:

var data = [{name:"Zachary",age:28},{name:"Nicholas",age:29}];data.sort(createComparisonFunction("name"));alert(data[0].name); //Nicholasdata.sort(createComparisonFunction("age"));alert(data[0].name); //Zachary

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.