JSDoc - how to document region of code

Viewed 2861

I have started using of JSDoc and so far it is great thing, but I want to document the part of my code like Visual Studio has #region.

Should I just wrap it in block of comments like this?

/**
 * Region for calling express routes 
 */

here goes code...

/**
 * End region
 */

I am just searching more elegant way to do this.

2 Answers
Related