Angular classes run into the same issue, reported via https://discourse.mozilla.org/t/firefox-web-console-property-getter/59165 ``` Object { powers: (4) […], model: {…}, submitted: false } Object { id: 42, name: "", power: "", alterEgo: undefined } ``` ``` HeroFormComponent {powers: Array(4), model: Hero, submitted: false} Hero {id: 42, name: "", power: "", alterEgo: undefined} ```
Bug 1526688 Comment 12 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
Angular classes run into the same issue, reported via https://discourse.mozilla.org/t/firefox-web-console-property-getter/59165 Firefox: ``` Object { powers: (4) […], model: {…}, submitted: false } Object { id: 42, name: "", power: "", alterEgo: undefined } ``` Chrome: ``` HeroFormComponent {powers: Array(4), model: Hero, submitted: false} Hero {id: 42, name: "", power: "", alterEgo: undefined} ```