Is there a way to provide named parameters in a function call in JavaScript?

前端 未结 10 1714
抹茶落季
抹茶落季 2020-11-22 07:28

I find the named parameters feature in C# quite useful in some cases.

calculateBMI(70, height: 175);

What can I use if I want this in JavaS

相关标签:
10条回答
  • 2020-11-22 07:30

    Another way would be to use attributes of a suitable object, e.g. like so:

    function plus(a,b) { return a+b; };
    
    Plus = { a: function(x) { return { b: function(y) { return plus(x,y) }}}, 
             b: function(y) { return { a: function(x) { return plus(x,y) }}}};
    
    sum = Plus.a(3).b(5);
    

    Of course for this made up example it is somewhat meaningless. But in cases where the function looks like

    do_something(some_connection_handle, some_context_parameter, some_value)
    

    it might be more useful. It also could be combined with "parameterfy" idea to create such an object out of an existing function in a generic way. That is for each parameter it would create a member that can evaluate to a partial evaluated version of the function.

    This idea is of course related to Schönfinkeling aka Currying.

    0 讨论(0)
  • 2020-11-22 07:31

    This issue has been a pet peeve of mine for some time. I am a seasoned programmer with many languages under my belt. One of my favorite languages that I have had the pleasure to use is Python. Python supports named parameters without any trickery.... Since I started using Python (some time ago) everything became easier. I believe that every language should support named parameters, but that just isn't the case.

    Lot's of people say to just use the "Pass an object" trick so that you have named parameters.

    /**
     * My Function
     *
     * @param {Object} arg1 Named arguments
     */
    function myFunc(arg1) { }
    
    myFunc({ param1 : 70, param2 : 175});
    

    And that works great, except..... when it comes to most IDEs out there, a lot of us developers rely on type / argument hints within our IDE. I personally use PHP Storm (Along with other JetBrains IDEs like PyCharm for python and AppCode for Objective C)

    And the biggest problem with using the "Pass an object" trick is that when you are calling the function, the IDE gives you a single type hint and that's it... How are we supposed to know what parameters and types should go into the arg1 object?

    I have no idea what parameters should go in arg1

    So... the "Pass an object" trick doesn't work for me... It actually causes more headaches with having to look at each function's docblock before I know what parameters the function expects.... Sure, it's great for when you are maintaining existing code, but it's horrible for writing new code.

    Well, this is the technique I use.... Now, there may be some issues with it, and some developers may tell me I'm doing it wrong, and I have an open mind when it comes to these things... I am always willing to look at better ways of accomplishing a task... So, if there is an issue with this technique, then comments are welcome.

    /**
     * My Function
     *
     * @param {string} arg1 Argument 1
     * @param {string} arg2 Argument 2
     */
    function myFunc(arg1, arg2) { }
    
    var arg1, arg2;
    myFunc(arg1='Param1', arg2='Param2');
    

    This way, I have the best of both worlds... new code is easy to write as my IDE gives me all the proper argument hints... And, while maintaining code later on, I can see at a glance, not only the value passed to the function, but also the name of the argument. The only overhead I see is declaring your argument names as local variables to keep from polluting the global namespace. Sure, it's a bit of extra typing, but trivial compared to the time it takes to look up docblocks while writing new code or maintaining existing code.

    Now, I have all the parameters and types when creating new code

    0 讨论(0)
  • 2020-11-22 07:31

    There is another way. If you're passing an object by reference, that object's properties will appear in the function's local scope. I know this works for Safari (haven't checked other browsers) and I don't know if this feature has a name, but the below example illustrates its use.

    Although in practice I don't think that this offers any functional value beyond the technique you're already using, it's a little cleaner semantically. And it still requires passing a object reference or an object literal.

    function sum({ a:a, b:b}) {
        console.log(a+'+'+b);
        if(a==undefined) a=0;
        if(b==undefined) b=0;
        return (a+b);
    }
    
    // will work (returns 9 and 3 respectively)
    console.log(sum({a:4,b:5}));
    console.log(sum({a:3}));
    
    // will not work (returns 0)
    console.log(sum(4,5));
    console.log(sum(4));
    
    0 讨论(0)
  • 2020-11-22 07:31

    Coming from Python this bugged me. I wrote a simple wrapper/Proxy for node that will accept both positional and keyword objects.

    https://github.com/vinces1979/node-def/blob/master/README.md

    0 讨论(0)
  • 2020-11-22 07:33

    No - the object approach is JavaScript's answer to this. There is no problem with this provided your function expects an object rather than separate params.

    0 讨论(0)
  • 2020-11-22 07:41

    Calling function f with named parameters passed as the object

    o = {height: 1, width: 5, ...}
    

    is basically calling its composition f(...g(o)) where I am using the spread syntax and g is a "binding" map connecting the object values with their parameter positions.

    The binding map is precisely the missing ingredient, that can be represented by the array of its keys:

    // map 'height' to the first and 'width' to the second param
    binding = ['height', 'width']
    
    // take binding and arg object and return aray of args
    withNamed = (bnd, o) => bnd.map(param => o[param])
    
    // call f with named args via binding
    f(...withNamed(binding, {hight: 1, width: 5}))
    

    Note the three decoupled ingredients: the function, the object with named arguments and the binding. This decoupling allows for a lot of flexibility to use this construct, where the binding can be arbitrarily customized in function's definition and arbitrarily extended at the function call time.

    For instance, you may want to abbreviate height and width as h and w inside your function's definition, to make it shorter and cleaner, while you still want to call it with full names for clarity:

    // use short params
    f = (h, w) => ...
    
    // modify f to be called with named args
    ff = o => f(...withNamed(['height', 'width'], o))
    
    // now call with real more descriptive names
    ff({height: 1, width: 5})
    

    This flexibility is also more useful for functional programming, where functions can be arbitrarily transformed with their original param names getting lost.

    0 讨论(0)
提交回复
热议问题