top of page
Search


JavaScript Callback Function
In Javascript, Functions are objects. We can pass the objects to functions as parameters. And, also we can pass functions as parameters...

The Tech Platform
Jun 15, 2021


How to Avoid JavaScript Type Conversions
JavaScript performs implicit conversions between data types. Let’s find out how to avoid it. For example, take a look at the condition...

The Tech Platform
Jun 15, 2021


Write a JavaScript Program to find the Current Date and Time.
Code: <!DOCTYPE html> <html> <body> <h2>Today's Date and Time using javascript</h2> <p id="demo"></p> <script> const d = new Date();...

The Tech Platform
Jun 13, 2021


JavaScript Typed Arrays
Typed Arrays are objects which are quite similar to Arrays, but provide a mechanism to write raw binary data into memory buffers. This...

The Tech Platform
Jun 13, 2021


Aspect-Oriented Programming in JavaScript
We all know about Object-Oriented Programming and Functional Programming, but have you heard about Aspect-Oriented Programming before? We...

The Tech Platform
Jun 5, 2021


Write a Program to Convert Celsius to Fahrenheit in JavaScript
Code: <!DOCTYPE html> <html> <body> <h2>JavaScript Celcius to Fahrenhet</h2> <p>Insert a number into one of the input fields below:</p>...

The Tech Platform
Jun 2, 2021


Write a Program to Find the Length of the String in JavaScript.
Code: <!DOCTYPE html> <html> <body> <h2>Program to Find the length of the String </h2> <p>Length of the String <b>"Welcome to The Tech...

The Tech Platform
Jun 2, 2021


Differences between WebSockets and Socket.IO
WebSockets and Socket.IO are probably two of the most popular solutions for implementing real-time communications in the modern web. But...

The Tech Platform
Jun 1, 2021


Rollup vs. Parcel vs. webpack: Which Is the Best Bundler?
Recently I was publishing a library to npm and I thought of experimenting with the bundler I was going to package my code in. While...

The Tech Platform
Jun 1, 2021


Understanding call(), bind() & apply() methods in JavaScript in simplest way!
In this article, we shall try to understand the functionalities of JavaScript methods call(), bind() and apply(). In order to make it...

The Tech Platform
May 25, 2021
bottom of page
