Category: javascript

Java Script @ Freshers.in

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…

Continue Reading Converting the entire characters in a string to lowercase : toLowerCase()
Java Script @ Freshers.in

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…

Continue Reading Convert a string to its uppercase form using JavaScript : toUpperCase()
Java Script @ Freshers.in

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…

Continue Reading Replacing of all occurrences of a specified string or regular expression using JavaScript : replaceAll()
Java Script @ Freshers.in

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,…

Continue Reading Finding string length in JavaScript : string.length
Java Script @ Freshers.in

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…

Continue Reading Sticky header using CSS and JavaScript
Java Script @ Freshers.in

JavaScript : How to Merge Arrays with Contents

In this tutorial, we will explore various methods to merge arrays, with a specific focus on arrays containing elements. Through…

Continue Reading JavaScript : How to Merge Arrays with Contents
Java Script @ Freshers.in

JavaScript : How to returns the element of that index

JavaScript Arrays are a fundamental data structure that allows developers to store and manipulate collections of data efficiently. One of…

Continue Reading JavaScript : How to returns the element of that index
Java Script @ Freshers.in

JavaScript : Removing Duplicates from Arrays in JavaScript

This article will show how to remove duplicates from an array in JavaScript using the Set object and the filter…

Continue Reading JavaScript : Removing Duplicates from Arrays in JavaScript