8 lines
102 B
JavaScript
8 lines
102 B
JavaScript
"use strict";
|
|
|
|
var Test = function Test() {};
|
|
|
|
Test.prototype.test = function () {
|
|
return 5 + 5;
|
|
};
|