It is valid JavaScript to write something like this:

function example(x) {
    "Here is a short doc what I do.";
    // code of the function
}

The string actually does nothing. Is there any reason, why one shouldn't comment his/her functions in JavaScript in this way?

Two points I could think of during wiriting the question:

  • The string literal must be initiated, which could be costly in the long run

  • The string literal will not be recognized as removable by JS minifiers

Any other points?

Edit: Why I brought up this topic: I found something like this on John Resig's Blog, where the new ECMA 5 standard uses a not assigned string literal to enable "strict mode". Now it was my interest to just evaluate, if there could be uses or dangers in doing such documentation.

link|improve this question

And the interest of doing this is... ? – mjv Nov 9 '09 at 21:22
2  
Actually, YUI Compressor recognizes it as removable and removes it. – Eli Grey Nov 10 '09 at 0:34
@mjv: ...to experiment and evaluate features of a language. Have you never played Lego (TM)? – Boldewyn Nov 10 '09 at 7:34
If you want this string to be available in runtime, you can make the function return it in response to some special argument – alxx Oct 19 '10 at 6:21
feedback

2 Answers

up vote 6 down vote accepted

There's really no point in doing this in Javascript. In Python, the string is made available as the __doc__ member of the function, class, or module. So these docstrings are available for introspection, etc.

If you create strings like this in Javascript, you get no benefit over using a comment, plus you get some disadvantages, like the string always being present.

link|improve this answer
1  
Some JavaScript engines optimize this and remove the string. (function(){"foobar"}).toString(-1) === "function () {}" in Spidermonkey. – Eli Grey Nov 10 '09 at 0:33
That's cool, but there's still nothing to be gained by doing this in Javascript. Why subvert the design of the language? – Ned Batchelder Nov 10 '09 at 1:48
I'm not fully sure, if it is subversion: ejohn.org/blog/ecmascript-5-strict-mode-json-and-more – Boldewyn Nov 10 '09 at 7:36
You can modify the technique so that you do get the benefits of introspection and being able to see the strings in an interactive javascript shell: foo = function(bar) { return bar * bar }; foo.__doc__ = 'foo(bar): returns bar squared'; Then in a shell, you get something like this: > foo { [Function] __doc__: 'foo(bar): returns bar squared' } – Vineet Mar 21 at 1:53
feedback

You're not writing Python, so don't pretend like you are.

link|improve this answer
I agree, I just wanted to see, if there are any points in doing this. – Boldewyn Nov 10 '09 at 7:34
feedback

Your Answer

 
or
required, but never shown

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