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;
}
}
2
Q
A