Git and Github
Git and Github — Git is a version control system that lets you manage and keep track of your source code history. GitHub is a cloud-based hosting service that lets you manage Git repositories.
Programming Blog
TypeScript is a free and open source programming language developed and maintained by Microsoft. It is a strict syntactical superset of JavaScript and adds optional static typing to the language. It is designed for the development of large applications and transpiles to JavaScript.
Git and Github — Git is a version control system that lets you manage and keep track of your source code history. GitHub is a cloud-based hosting service that lets you manage Git repositories.
In this article, we will see how to check for both null and undefined in Angular/Typescript, Whenever we are using any typescript class or interface we define some properties there and we often need to check whether that property is null or undefined to prevent some run time error.
Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, macOS and Linux. It comes with built-in support for JavaScript, TypeScript and Node.js and has a rich ecosystem of extensions for other languages (such as C++, C#, Java, Python, PHP, Go) and runtimes (such as .NET and Unity).
In this article, we’ll see what is enum or enumeration and why it’s used and we’ll also see how to get names and values of enum in typescript. What are Enums? In typescript enum is available from typescript version 2.4. Enum or Enumeration allowed us to declare set of named constants. Enum is a collection … Read more How to get names and values of enum in typescript
We can convert string to an integer or number with few different ways. In this article, we’ll see all different ways to convert string to number in javascript or typescript or in angular.