I'm using Javascript with jQuery. I'd like to implement out params. In C#, it would look something like this:
/*
* odp the object to test
* error a string that will be filled with the error message if odp is illegal. Undefined otherwise.
*
* Returns true if odp is legal.
*/
bool isLegal(odp, out error);
What is the best way to do something like this in JS? Objects?
function isLegal(odp, errorObj)
{
// ...
errorObj.val = "ODP failed test foo";
return false;
}
Firebug tells me that the above approach would work, but is there a better way?
there is another way JS can pass 'out' parameters. but i believe the best ones for your situation were already mentioned.
Arrays are also passed by reference, not value. thus just as you can pass an object to a function, and then set a property of the object in the function, and then return, and access that object's property, you can similarly pass an Array to a function, set some values of the array inside the function, and return and access those values outside the array.
so in each situation you can ask yourself, "is an array or an object better?"
I think this is pretty much the only way (but I am not a hardcore JavaScript programmer ;)).
What you could also consider is to use a callback function:
The following is approach i am using. And this is answer for this question. However code has not been tested.
I'm not going to post any
code
but what fails to be done here in these answers is to put rhyme to reason. I'm working in the native JS arena and the problem arose that somenative API calls
need to be transformed because we can't write to the parameters without ugly shameful hacks.This is my solution:
The reason for this approach is thus:
Multiple return values
may be needed for any number of procedures. This creates a situation where objects with named values (that ultimately will not be in sync with the lexical context of all operations), constantly need to be memorized in order to appropriately work with the procedure(s).Using the prescribed method, you only have to know
what you called
, andwhere you should be looking
rather than having to know what you are looking for.There is also the advantage that "robust and stupid" alogrithms can be written to wrap around the desired procedure calls to make this operation "more transparent".
It would be wise to use an
object
,function
, or anarray
(all of which are objects) as a "write-back-output" parameter, but I believe that if any extraneous work must be done, it should be done by the one writing the toolkit to make things easier, or broaden functionality.This is a one for all answer for every occaision, that keeps
APIs
looking the way the should at first look, rather than appearing to be and having every resemblence of a hobble-cobbled weave of spaghetti code tapestry that cannot figure out if it is a definition or data.Congratulations, and good luck.
I'm using the webkitgtk3 and interfaceing some native C Library procs. so this proven code sample might at least serve the purpose of illustration.
Yes, as you yourself mentioned, objects are the best and only way to pass data by reference in JavaScript. I would keep your
isLegal
function as such and simply call it like this:The answers I have seen so far aren't implementing out parameters in JavaScript, as they are used in C# (the
out
keyword). They are merely a workaround that returns an object in case of an error.But what do you do if you really need out parameters?
Because Javascript doesn't directly support it, you need to build something that is close to C#'s out parameters. Take a look at this approach, I am emulating C#s DateTime.TryParse function in JavaScript. The out parameter is result, and because JavaScript doesn't provide an out keyword, I am using
.value
inside the function to pass the value outside the function (as inspired by MDN suggestion):Run the snippet and you'll see it works: It parses the
str
parameter into a Date and returns it in theresult
parameter. Note thatresult
needs to be initialized as empty array[]
, before you call the function. This is required because inside the function you "inject" the.value
property.Now you can use the pattern above to write a function as the one in your question (this also shows you how to emulate the new discard parameter known as
out _
in C#: In JavaScript we're passing[]
as shown below):What this example does is it uses the
result
parameter to pass an error message as follows:If you run the example it will display this message in a popup dialog.
Note: Instead of using a discard parameter as shown above, in JavaScript you could also use a check for
undefined
, i.e. inside the function check forThen it is possible to omit
result
as a parameter completely if not needed, so you could invoke it like