@codestart constructor
Starts a code block.
@codestart [LANGUAGE]
/**
* @codestart
* /* @signature `Person(name)`
* * @param {String} name A person's name.
* *|
* Person = function(name){
* this.name = name
* Person.count++;
* }
*
* /* @prototype *|
* Person.prototype = {
* /* Returns a formal name
* * @return {String} The name with "Mrs." added.
* *|
* fancyName: function(){
* return "Mrs. " + this.name;
* }
* }
* @codeend
*/
Parameters
- LANGUAGE
{String}
:Language of the code block.
See bit-docs-prettify for supported languages.
Use
Matches multiple lines. Must end with @codeend.