This project was generated with Angular CLI version 14.2.3.
Run ng serve
for a dev server. Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
- Edit the file my-experience.ts
- Add a new getter method like
public get companyName(): Experience {
var ex = new Experience();
// build referring to others
return ex;
}
- Edit the file my-resume.ts
- Add the new experience method into
my.experiences
var work = new MyExperience();
my.experiences = [
work.companyName,
// other existing experience
];