As I learn to write Javascript, I am looking for the standard methods typically used by programmers for how they separate their scripts, or blocks of code. Sure, I could come up with my own methods, but I’d like to follow typical standards.
For example, the way I separate scripts is the following way (by putting in asterisks):
SCRIPT 1
/**
*
*
*
*
*
*
*
*
*
*
*
*/ <—- (this is actually vertical, not horizontal, but stackoverflow made it horizontal)
SCRIPT 2
Is there a standard method? If not, is there a more practical way? I find that doing this helps me better visually see and separate areas of code in JavaScript.
Thanks