Open rain1024 opened 10 years ago
/**
* Illustrates line wrapping for long param/return descriptions.
* @param {string} foo This is a param with a description too long to fit in
* one line.
* @return {number} This returns something that has a description too long to
* fit in one line.
*/
project.MyClass.prototype.method = function(foo) {
return 5;
};
var screen = function(){
}
var Dog = function(){
this.position = 0;
this.move = function(){
this.position += 5;
}
}
var dog = new Dog();
console.log(dog);
Documentation
Testing
Package Management
Scaffolding
Templates
Comment
[1]
Javascript Frameworks