TypeScript Programming Language

From GM-RKB
(Redirected from TypeScript)
Jump to navigation Jump to search

A TypeScript Programming Language is a free, open-source strongly-typed statically typed, object-oriented, and multi-paradigm programming language that is a super-set of JavaScript.



References

2023

2022

2022

  • https://devblogs.microsoft.com/typescript/announcing-typescript-4-8/
    • QUOTE: ... If you’re not yet familiar with TypeScript, it’s a language that builds on JavaScript and adds syntax for types. These types let you put your expectations and assumptions into your code, and those assumptions can then be checked by the TypeScript type-checker. This checking can help avoid typos, calling uninitialized values, mixing up arguments for functions, and more. Types go beyond checking though, and are used to give you a powerful editing experience for both TypeScript and JavaScript, enabling code completion, go-to-definition, renaming, and more. In fact, if you already use JavaScript in Visual Studio or VS Code, you’re already using TypeScript! ...