Types and Variables Flashcards

1
Q

Fill in the declaration on the following application

class Startup {

????????

console.log(‘Hello World’);

return 0;

}

}

A

class Startup {

public static main(): number {

console.log(‘Hello World’);

return 0;

}

}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly