top of page
Search

What is "Render Props" in React.JS?
Props in React are properties that are passed from a parent component to a child component. Basically, props are plain JavaScript...
The Tech Platform
Apr 26, 2022

Calculate days between two dates in JavaScript
Sometimes we need to calculate the number of days between two dates. This can be done using the JavaScript programming language....
The Tech Platform
Apr 25, 2022

JavaScript Naming Conventions
A naming convention is a set of rules or guidelines that people agree upon to name things. These rules can vary depending on their...
The Tech Platform
Apr 23, 2022

How to Hide or Show Elements in JavaScript?
In JavaScript, we can hide the elements using the style.display or by using the style.visibility. The visibility property in JavaScript...
The Tech Platform
Apr 20, 2022

What are ES6 Proxies and how to use them?
In computing terms, proxies sit between you and the things you’re communicating with. The term is most often applied to a proxy server —...
The Tech Platform
Apr 18, 2022

34 UI Libraries For React, Vue And Angular
React: React is a free and open-source front-end JavaScript library for building user interfaces based on UI components. It is maintained...
The Tech Platform
Apr 18, 2022

How to Add JavaScript to HTML?
You can add JavaScript code in an HTML document by employing the dedicated HTML tag <script> that wraps around JavaScript code. The...
The Tech Platform
Apr 12, 2022

Exploiting XSS with Javascript/JPEG Polyglot
XSS (Cross-Site Scripting) vulnerabilities pose a significant security risk to web applications. They allow attackers to inject malicious...
The Tech Platform
Apr 11, 2022

Use Ant Design UI Library with Vue3
How to Install and Use Ant Design with Vue3 I followed most of the steps described in the url below but I had to change a library’s...
The Tech Platform
Apr 8, 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
Apr 6, 2022
bottom of page