angular2例子中的get格式语句

The get format statement in angular 2 example

在 angular 2 个管道示例中:https://angular.io/docs/ts/latest/guide/pipes.html 有一个 HeroBirthday2Component 的例子。我无法理解这条线的工作原理

get format() { return this.toggle ? 'shortDate' : 'fullDate'; }

我的意思是我知道它会切换格式 属性 并且 DOM 在 toggleFormat() 更改它之后通过更改检测进行更新。但是我无法掌握上面的内容。有人可以解释一下代码行及其实现吗?

那是 getter,就像在其他强类型语言中一样。

看这里:

get and set in TypeScript