I was going through https://google.github.io/styleguide/jsguide.html#formatting-comments to understand the style guide Google is setting for their developers.
Google accepts the following styles:
/*
* This is
* okay.
*/
// And so
// is this.
/* This is fine, too. */
But interestingly, Google mentions Do not use JSDoc (/** … */) for implementation comments.
I have been using JSDOC styling for my past projects.
Any idea why is it not recommended?