Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

4 Answers

you can't. a!=b is executed first and only the result of this (true or false) is given to your function so you don't have a chance to get back a!=b or 2!=3.

share|improve this answer
why does this answer get 3 votes when it doesn't actually address the question asked and instead points out a syntax error in a question that doesn't even have all that much syntax? Granted, it's a useful hint, but I fail to see how it's worth voting up as the "best" answer since it's not actually one at all. – Dr.Dredel Sep 13 '11 at 7:58
 console.log (arguments)

will print the arguments given to the function, but in your case, all your function sees is a boolean, because a != b will be evaluated first, and only the result passed as a parameter in the function call.

share|improve this answer

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.

share|improve this answer

You can't do it. When you have the following line:

my_assert(a!=b);

The expression a!=b will first be evaluated and its result will be passed to my_assert.

Assuming your my_assert() function is used specifically for your own testing and you can control how it works and what you pass into it you could do something like this:

my_assert(a!=b, "a!=b");

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 my_assert(a!=b, "a==b");, and it's clunky, but I can't think of another way to do it.

share|improve this answer
Or rather assertNotEqual(a,b) – Thilo Sep 13 '11 at 7:56
Good point @Thilo, though that still won't let the assert function know the names of the variables passed in. Obviously in my answer I was thinking more of an assertIsTrue(anyexpression). – nnnnnn Sep 13 '11 at 8:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.