new operator creates an instance of a class and calls the constructor.
new ( )The arguments must match the arguments defined for the constructor.
Examples:
var c = new Car; var v = new Volvo("Amazon");
new . < > ( )
Example:
// with two type arguments: var numbers = new Map.<string,int>;
