#Type #Inference
TypeScript is a typed language. However, it is not mandatory to specify the type of a variable. TypeScript infers types of variables when there is no explicit information available in the form of type annotations.
Types are inferred by TypeScript compiler when:
Variables are initialized
Default values are set for parameters
Function return types are determined
For example,
var a = "some text"
Here, since we are not explicitly defining a: string with a type annotation, TypeScript infers the type of the variable based on the value assigned to the variable. The value of a is a string and hence the type of a is inferred as a string.
На этой странице сайта вы можете посмотреть видео онлайн TypeScript Tutorial #4 - Type Inference длительностью часов минут секунд в хорошем качестве, которое загрузил пользователь Free Tutorial Wale 17 Июнь 2021, поделитесь ссылкой с друзьями и знакомыми, на youtube это видео уже посмотрели 7 раз и оно понравилось 0 зрителям. Приятного просмотра!