top of page
Search
The Tech Platform
Sep 6, 2022
Which Programming Languages you should learn?
Which programming Language should I learn? JavaScript and Python, two of the most popular languages in the startup industry, are in high...
The Tech Platform
Aug 1, 2022
Mapped Types in TypeScript
Mapped types allow you to create new types from existing ones by mapping over property types. Each property of the existing type is...
The Tech Platform
Jul 4, 2022
Programming Languages: Types of Programming Language.
A programming language is any set of rules that converts strings, or graphical program elements in the case of visual programming...
The Tech Platform
Jun 22, 2022
Introduction to Duck Typing in TypeScript
What is Duck Typing? Duck Typing is usually used in code that needs to handle a range of different data, often without knowing exactly...
The Tech Platform
Jun 8, 2022
Write a program to Check if a Value exists in an Enum in TypeScript
Enums or enumerations are a new data type supported in TypeScript. Most object-oriented languages like Java and C# use enums. This is now...
The Tech Platform
Apr 30, 2022
What's new in TypeScript 4.7?
TypeScript 4.7, now in a beta release, offers ECMAScript module (ESM) support for Node.js 12 as well as a multitude of coding...
The Tech Platform
Feb 24, 2022
What are Decorators in TypeScript?
A Decorator is a special kind of declaration that can be applied to classes, methods, accessor, property, or parameter. Decorators are...
The Tech Platform
Feb 7, 2022
How to Create TypeScript Aliases?
Open your tsconfig.json file. Set baseUrl value (under compilerOptions) as “src” instead of “.” Add “paths” under compilerOptions. Start...
The Tech Platform
Jan 18, 2022
Command Pattern in Typescript
Command is a behavioral design pattern that turns a request into a stand-alone object that contains all information about the request....
The Tech Platform
Dec 30, 2021
KeyOf Operator in TypeScript
The keyof is one of the operators that can be used to fetch the user values; also, it follows the union operator formats and its...
bottom of page