Transitioning from a Java background to delving into Angular 2 with TypeScript opens up numerous possibilities for comparison. In Angular 2 / TypeScript, we have the ability to declare variables with specific types such as name : string
inside a class. But how can I efficiently declare multiple variables of the same type all at once? Is there a shorthand way to declare something like
name, designation, email : string
in just one line?