top of page
Search
The Tech Platform
Jul 22, 2022
What is JavaScript Web Token? When and Why to use JWT? Where to store JSON JWT?
In web development, secure communication and data transmission are critical components of modern applications. One powerful solution that...
The Tech Platform
Jun 30, 2022
Top 10 JavaScript Array Functions
JavaScript array is an object that represents a collection of similar type of elements. There are 3 ways to construct array in JavaScript...
The Tech Platform
Jun 17, 2022
What is Memory Management in JavaScript? How to Improve Memory Management of your Application
Memory management in low-level languages like C involves manual control over memory allocation and deallocation using functions like...
The Tech Platform
Jun 14, 2022
Fastest Loop in JavaScript?
In programming, loops are used to repeat a block of code. For example, if you want to show a message 100 times, then you can use a loop....
The Tech Platform
Jun 3, 2022
"this" Parameter in JavaScript
The "this" parameter in JavaScript is a fundamental concept in JavaScript that plays an important role in defining the context of a...
The Tech Platform
May 19, 2022
Node.js Logging Tutorial
Node.js logging is an important part of supporting the complete application life cycle. From creation to debugging to planning new...
The Tech Platform
May 16, 2022
Difference Between Parcel.JS and Webpack
What is Parcel? Parcel.JS is a web application bundler, differentiated by its developer experience. It offers blazing-fast performance...
The Tech Platform
Apr 25, 2022
Difference Between JavaScript Promises and JavaScript Observable
What are JavaScript Promises? JavaScript Promises are used to handle asynchronous operations in JavaScript. They are easy to manage when...
The Tech Platform
Mar 7, 2022
The Secrets of JSON.stringify()
What is JSON.stringify()? JSON.stringify() is a function commonly used to convert a JavaScript object or value to a JSON-formatted...
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...
bottom of page