|
TagConstructor
@constructor
The @constructor TagThe @constructor tag marks an function as being a constructor, meant to be called with the new keyword to return an instance. Syntax@constructor Examples/**
Creates a new Person.
@constructor
*/
Person = function() {
}
var p = new Person();See Also
|