«
Prev
»
Next
Web / Typescript interview questions
Inbuilt datatypes in typescript.
| Data type. | Explanation. |
| number | Represents both Integer as well as Floating Point numbers. |
| string | Sequence of characters. |
| boolean | Represents true and false values. |
| void | Used as function return type when it does not return anything. |
| null | Represents variable/object whose value not set. |
| undefined | Represents uninitialized variables. |
| any | Represents variable that hold any value types. |
More Related questions...
Comments & Discussions