02-typescript-accessors-overview
02-typescript-accessors-overview
Customer Class
How to access?
myCustomer.setFirstName("Greg");
myCustomer.setFirstName("Greg");
console.log(myCustomer.getFirstName());
• Known as Accessors
Compiler flag
File: tsconfig.json
{
"compilerOptions": {
"noEmitOnError": true,
"target": "es5"
}
}
C:\> tsc
C:\> tsc
C:\> tsc
www.luv2code.com/tsconfig-docs