top of page
Search


JavaScript Require() vs Import()
JavaScript Require() In NodeJS, require() is a built-in function to include external modules that exist in separate files. require()...

The Tech Platform
Jan 6, 2022


3 Methods to Merge an Array in JavaScript
An array is a data structure representing an ordered collection of indexed items. A common operation performed on multiple arrays is...

The Tech Platform
Dec 28, 2021


Methods to Search through Arrays in JavaScript.
In JavaScript, we often work with data that is stored in Arrays. A common task will be searching the array to find if it contains a value...

The Tech Platform
Dec 24, 2021


Threads in JavaScript?
A thread is the sequential programs described previously. A single thread also has a beginning, a sequence, and an end. At any given time...

The Tech Platform
Dec 24, 2021


What is RsJS? and its Operators
As per the official website of RxJS, it is defined as a library for composing asynchronous and event-based programs by using observable...

The Tech Platform
Dec 23, 2021


A Generic Function to Update and Manipulate Object Arrays in TypeScript
While building my newest SaaS product, ReduxPlate, I realized a common pattern kept cropping up in my array manipulation functions. I was...

The Tech Platform
Dec 22, 2021


Top 10 lesser-known useful NPM packages
Node.js applications benefit from more than a million open-source packages available in the NPM package registry. Most popular packages...

The Tech Platform
Dec 22, 2021


How to reuse common layouts in Angular using Router
Most of the web apps had a design where different pages are using common layout. For example layout which consists of header, footer and...

The Tech Platform
Dec 18, 2021


JavaScript One-Liner coding/ Programming
1. How to convert a string from snake_case to camelcase A string in snake_case uses the underscore character to separate each word. Each...

The Tech Platform
Dec 17, 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 14, 2021
bottom of page