Reputation: 1952
Java has Javadoc, Python has docstring. Is there something similar in JavaScript?
Upvotes: 62
Views: 31847
Reputation: 27843
The most commonly used is JsDoc (https://jsdoc.app/).
This is also a tool that generates documentation from your sources, commented with JsDoc style: https://github.com/jsdoc3/jsdoc
Upvotes: 54