skip to Main Content

Javascript – Assign value to getter

I have getter in the component here is it public get canSave(): boolean { const isValid = this.rows.every(r => r.phoneControl.valid); if (!isValid) { return false; } const changes = this.managePhonesPopupService.getChanges(this.rows, this.params); return changes.phones.changed || changes.emergencyPhone.changed; } Then in the method…

VIEW QUESTION
Back To Top
Search