Is Node.js Array.map() asynchronous?

前端 未结 6 1271
遥遥无期
遥遥无期 2020-12-24 13:10

Can I count on nodeIDs mapping is completed every time doSomething() is called?

nodeIDs = $.map(nodeIDs, function(n){
    return n.match(/\\d+$/);
});
doSome         


        
6条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-24 13:54

    JavaScript is also a functional programming language. What you have here is a «higher order function», a function which takes a function as a parameter. Higher order functions are synchronous (but see note below).

    Sources:

    • Functional Programming
    • Higher order functions in JavaScript

    map() is a typical example of a higher order function. It takes a function and applies it to all elements of an array. The definition sounds very «functional». This function is also not provided by Node. It is documented by MDN Array.prototype.map() and specified by ECMAScript 5.1.

    To answer your question: Yes, doSomething(nodeIDs) is called after all elements have been applied.


    Note: The higher order function is a concept of functional programming. JavaScript is functional, but also deeply seated in the practicality of executing code inside a browser or on the server. I would say that for example setTimeout() is not a higher order function even if it takes a function as a parameter because setTimeout() is not really purely functional because it uses time. Pure functionality is timeless. For example the result of map() doesn't depend on time. And that's what this question is really about. If something doesn't depend on time you execute it synchronously. Problem solved.

    Thanks to Simon for challenging the definition of the higher order function in JavaScript.

提交回复
热议问题