The Basics: Day 0 - first blog post
I have learned very little today. But not nothing. Today I learned that I can write a blog post. I know some markdown but do not know how to make a link work.
Until I looked at this cheatsheet. Now I am on to the next thing:
export class Test {
   isExample: boolean;
   construtor(){
       this.isExample = true;
   }
    get showSomething(): boolean {
        return this.isExample;
    }
    toggleState() {
        this.isExample = !this.isExample;
    }
}
Cheers
 

 
    
Top comments (0)