JavaScript


Top 10 JavaScript Frameworks for Server Side Development in 2020

A curated list of the most essential back-end JavaScript frameworks

JavascriptJavascript frameworksServer side development

How to Retrieve All Data via Paginated API Calls in Vanilla JavaScript

No plugins. Two Approaches —1. Recursion, 2. Iteration to aggregate data chunks.

JavascriptApiPagination

Send Emails From Your Website With EmailJS

Are you struggling with the behind code of your website contact form, then let this article be your life-saver.

EmailjsJavascriptEmail

JavaScript Frameworks for building Desktop Applications

Best JavaScript Frameworks that can be used to create desktop applications

JavascriptElectronNodejs

JavaScript Algorithm: Distance Between Points

Create a function to calculate the distance between two points defined by their x and y coordinates.

JavascriptAlgorithmsCoding

It is really easy to convert local time to UTC in JavaScript

Do you feel the need for a library even for a small task like converting local Date to UTC format?

JavascriptDateUtc

How to Use Regular Expression to Get Strings Between Parentheses with JavaScript?

A tutorial on how to use regular expressions to get strings between parentheses with JavaScript.

JavascriptRegexRegular expression

How to Initialize a JavaScript Date to a Particular Time Zone?

Sometimes, we may want to initialize a JavaScript date to a particular time zone. The default time zone is UTC.

JavascriptDateTime

How To Convert Any Function To An Arrow Function In JavaScript

Same results, less code. Learn the process of converting any type of traditional JavaScript function into an arrow function to make your code more compact and powerful.

JavascriptArrow function

Comparing Objects in JavaScript

What works, what doesn't and why

JavascriptProgramming