Does The @ Symbol Mean Anything In Javascript?
I noticed the @ symbols mentioned in many javascript files and couldn't figure out the significance of this character there. for example: /** * Calls the specified callback f
Solution 1:
That comment is JSDoc. The @param callbackfn
means "what follows is the description of the argument callbackfn
".
Your IDE might be able to parse that format or you can use jsdoc to generate documentation from that.
Solution 2:
It's only for documentation purpose.
@param is here to indicate which param your function will take for exemple. There is few more, like @author, etc.
Solution 3:
that is a javadoc style comment. look at the javadoc documentation
Solution 4:
@param tag Specifies information for a parameter in a function or method.
Post a Comment for "Does The @ Symbol Mean Anything In Javascript?"