2014-11-23 16:17:49 +11:00

9 lines
92 B
JavaScript

class Test {
get test() {
return 5 + 5;
}
set test(val) {
this._test = val;
}
}