Tag: Web
Merging two or more strings using JavaScript: concat()
The concat() method is used in JavaScript to merge two or more strings, returning a new string that is the…
Converting the entire characters in a string to lowercase : toLowerCase()
The toLowerCase() method in JavaScript is utilized to convert the entire characters in a string to lowercase. This doesn’t just…
Convert a string to its uppercase form using JavaScript : toUpperCase()
The toUpperCase() method in JavaScript is used to convert a string to its uppercase form. This method is particularly useful…
Replacing of all occurrences of a specified string or regular expression using JavaScript : replaceAll()
The replaceAll() method, introduced in ECMAScript 2021, allows for the replacement of all occurrences of a specified string or regular…
Replacing occurrences of a pattern found in a string with a specified replacement string : replace()
The replace() method executes a search for a match in a string based on a regular expression or a fixed…
Finding string length in JavaScript : string.length
The “length” property of a string returns the number of characters contained in a string. This count includes spaces, numbers,…
Node.js HTTP Module for building web servers and clients
The http module, provides a powerful toolkit for creating HTTP servers and clients. In this article, we’ll dive into the…
Sticky header using CSS and JavaScript
A sticky header refers to a website navigation tool that remains in a fixed position at the top of the…
Amazon CloudFront quick reference and cheat sheet
1. CloudFront gives developers an easy and cost-effective way to distribute content with low latency and high data transfer speeds….