67d109862a
From the api standpoint, there's no difference between property and a getter. References #14.
11 lines
65 B
JavaScript
11 lines
65 B
JavaScript
class Foo {
|
|
start() {
|
|
}
|
|
|
|
stop() {
|
|
}
|
|
|
|
get zzz() {
|
|
}
|
|
}
|