Tag: Web
How to perfectly format dates in JavaScript : Ultimate guide to formatting dates in JavaScript
In the realm of web development, managing and presenting dates is a common task. Whether you’re crafting a scheduling app,…
JavaScript Arrays: A Comprehensive Guide
An array in JavaScript is a single variable that can store multiple values. Each value inside an array is identified…
JavaScript string search Methods
JavaScript is a versatile language that powers the web. With the growth of the internet and web applications, understanding JavaScript…
Cryptographic in Node.js with the Crypto module – Helps in securing communication : crypto
Node.js’s crypto module provides a range of cryptographic functionalities including set of wrappers for OpenSSL’s hash, HMAC, cipher, decipher, sign,…
Parsing and formatting URL query strings in Node JS using querystring.
The querystring module provides utilities for parsing and formatting URL query strings. It can be used to convert query strings…
Node.js with Assert module : Straight forward way to write tests for your Node.js applications : assert
The assert module is one of the core libraries in Node.js, meaning it comes bundled with Node.js installation, and thus,…
Node.js Streams: Efficient data handling in real-time applications : Streams
Streams are collections of data – just like arrays or strings. The difference is that streams might not be available…
JavaScript buffer method ,handling binary data efficiently – Buffer
A Buffer is a space in memory, typically temporary, that safely stores data during the transfer between two entities or…
Java Scripts String Methods
trimEnd() : Remove whitespace from the end of a string using JavaScript trimRight() : Remove whitespace from the end of…
Remove whitespace from the end of a string using JavaScript : trimEnd() , trimRight()
JavaScript’s trimEnd() method, alternatively known as trimRight(), is utilized to remove whitespace from the end of a string. This includes…