watch 01:36
We're Getting Mutants in the MCU - The Loop
Do you like this video?
Play Sound
class MyClass{
private someNumber: number = 9; private someString: string = "blah"; constructor(test: number){ this.someNumber = test; this.methodTest(); } public methodTest(): void{ this.someString = "blablah"; }
}