blob: ffc4429199a68a9b0eca8e39ab4bbd3bd653954e [file] [log] [blame]
/*
* Comment example.
*/
var globalVar = {
id: 10,
name: "Test",
getDescription: function () {
return this.id + " " + this.name;
}
};
ClassName.prototype.test = function (parameter) {
var number = 123 + parameter;
var str = "String";
var regExp = /.HTML/;
return this.name + '_' + str; // line comment
}