Function and Inference Variables
This lesson goes over functions and inference variables.
TypeScript can infer the type of a variable, hence, it is possible to avoid using the colon for anonymous functions by simply setting the variable to an unnamed function that has type parameters and a return type. ...