When declaring a variable, when we omit the visibility parameter (public, private, and protected) the variable is created by default in what visibility?
export class AddEditTaskPage {
idade: number;
valor: string;
....
Just one more question, is the word var
optional? Do you have any special reason to use it?
export class AddEditTaskPage {
var idade: number;
valor: string;
....