Merge pull request #746 from mrcslws/wrong-gap-edge-point
[dygraphs.git] / jsdoc-toolkit / app / test / prototype.js
CommitLineData
629a09ae
DV
1/** @constructor */
2function Article() {
3}
4
5Article.prototype.init = function(title) {
6 /** the instance title */
7 this.title = title;
8
9 /** the static counter */
10 Article.counter = 1;
11}
12
13a = new Article();
14a.Init("my title");
15
16print(a.title);
17print(Article.counter);