For consistency and to more easily comment-out code in editors, line comments (// ...) should be
preferred over
block comments (/* ... */).
Replace /* ... */ comments by // comments.
/* These are my comments: blabla ... */
// These are my comments: // blabla // ...