top of page
Search
The Tech Platform
Apr 6, 2022
LRU Cache in JavaScript: How it Works?
The Least Recently Used (LRU) algorithm is a cache replacement algorithm commonly used to manage a cache when its space is limited. The...
The Tech Platform
Mar 16, 2022
Sorting Tables in Angular with RxJS
First let’s get the latest Angular CLI: npm install -g @angular/cli Next we want to create a simple project to test this out in using the...
The Tech Platform
Feb 24, 2022
Top 7 competitive programming algorithms every coder must know
Programming is a difficult role, and once you enter it, you will face new challenges and may be required to solve problems that no one...
The Tech Platform
Feb 18, 2022
IndexOf() in JavaScript
In JavaScript, indexOf() is a string method that is used to find the location of a substring in a string. Because the indexOf() method is...
The Tech Platform
Feb 18, 2022
Top 5 Programming Languages for Automation Testing
Automation testing is the process of testing software and other tech products to ensure it meets strict requirements. Essentially, it’s a...
The Tech Platform
Feb 12, 2022
What is the Real Order of the Return Value of Object.keys()?
Our company’s App has a sharing function. When the user intends to share his/her personal dynamic, the app can automatically generate a...
The Tech Platform
Feb 10, 2022
Using Static Files (HTML, CSS,JS) In ASP .NET Core Web API
In this article, we will see how to add static files or groups of static files to an existing ASP.Net Core web API project. As we all...
The Tech Platform
Feb 8, 2022
Difference Between Next.js and Remix
What is Next.js? Next.js is a React framework for developing single page Javascript applications. The benefits of this framework are...
The Tech Platform
Feb 4, 2022
Simple Steps to Convert an ASP.NET Core with Angular App to a Desktop App
In this blog, we are going to walk through how to convert an ASP.NET Core with Angular (2 to 9+) web application to a desktop app. We are...
The Tech Platform
Feb 1, 2022
How to Generate Random String in JavaScript?
Sometimes, programmers require to create a string which is generated by selecting the random characters. Random String Generator helps to...
bottom of page