Reputation: 1942
Java has Javadoc, Python has docstring. Is there something similar in JavaScript?
Upvotes: 62
Views: 31780
Reputation: 27823
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