Is there a way to print arguments' list in full or in parts in JavaScript?
Example:
from within the function my_assert(a!=b) I'd like to print a!=b, or even 2!=3 for a particular function call.
|
Is there a way to print arguments' list in full or in parts in JavaScript? Example:
from within the function |
|||
|
|
|
you can't. |
|||
|
will print the arguments given to the function, but in your case, all your function sees is a boolean, because |
|||
|
|
|
umm... here, I'll google it for you :) http://www.seifi.org/javascript/javascript-arguments.html As some others pointed out, passing in a test (a != b) will only get you a boolean value (true|false) as your argument. But if you call myAssert(a,b), you can then evaluate the arguments and test their equality, as well as print their values, following the advice in the link I pasted. |
||||
|
|
|
You can't do it. When you have the following line:
The expression Assuming your
I.e., pass an extra parameter to the function with a string representation of what is being tested. Obviously that doesn't stop you accidentally saying |
|||