Block Tagstags-classOn this pagetags-classSyntax@class [<type> <name>]OverviewThe @class tag marks a function as being a constructor, meant to be called with the new keyword to return an instance.ExamplesA function that constructs Person instances./** * Creates a new Person. * @class */function Person() {}var p = new Person();