JSDoc comments for functions and constructors should use the @param tag to describe all available parameters. If documentation for some parameters is missing, this may indicate badly maintained code.

The missing @param tags should be added.

In the following example, the constructor Message has a JSDoc comment with a @param tag documenting its first parameter title, but no tag for its second parameter body.

  • Use JSDoc: The @param tag.