top of page
Search
The Tech Platform
Dec 14, 2021
Program to Convert String from Snake_Case to CamelCase in JavaScript
Snake_Case: A string in snake_case uses the underscore character to separate each word. Each word in a snake_case string usually begins...
The Tech Platform
Dec 13, 2021
How to Print All Permutations of a Given String in C, C++, JavaScript, and Python.
A permutation is a specific order in which objects can be arranged. For a string of length n, there are n! (n factorial) possible...
The Tech Platform
Nov 30, 2021
Program to Shuffle or Arrange Random Array in JavaScript
Below is the Flow chart which explains how array is shuffles or arranged in JavaScript. Code: function shuffle(arra1) { var ctr =...
The Tech Platform
Nov 9, 2021
Node.js Server-Sent Events with Total.js framework
With the Total.js framework, you can create an HTTP route for Server-Sent Events, or you can connect easily to another server with...
The Tech Platform
Oct 28, 2021
The Amazing Power of JavaScript Proxies
The Proxy object serves as a powerful tool that allows you to create a proxy or wrapper around another object. This proxy enables you to...
The Tech Platform
Oct 13, 2021
What is Function Declaration and Function Expression in JavaScript. How to use them.
When working with JavaScript functions, you have two primary ways to define them: Function Declaration and Function Expression. While...
The Tech Platform
Oct 11, 2021
Top JavaScript Libraries for Formatting Data and Time
Whether you need to create a calendar, an appointment scheduling system or an interface to integrate different people at different time...
The Tech Platform
Oct 9, 2021
How to handle Time Zones in JavaScript
When developing web applications, managing time zones becomes an essential aspect to consider. In most cases, we rely on the server time...
The Tech Platform
Oct 8, 2021
How to Properly Architect Your React App
Atomic Components For more detail, Click here. Atoms are your smallest building block. These are simple UI elements, like inputs,...
The Tech Platform
Sep 30, 2021
Cypress: Architecture, Components and Features
Cypress is a purely JavaScript-based front end testing tool built for the modern web. It aims to address the pain points developers or QA...
bottom of page