Javascript

JavaScript: Find ASCII Code of Characters

While working with javascript strings and characters, we often encounter a requirement to get the ASCII value of a character. This article demonstrates easy ways to get the ASCII code of characters using different methods and various example illustrations. ASCII codes are the numeric value given to the characters and symbols for storing and manipulation […]

JavaScript: Find ASCII Code of Characters Read More »

JavaScript: Check if String Starts with Special Character

A general requirement many people encounter while working with javascript strings is to check if the first letter of the string is a special character. This article demonstrates easy ways to check if the string starts with a special character using different methods and illustration examples. Table of Contents: Check if String Starts with Special

JavaScript: Check if String Starts with Special Character Read More »

JavaScript: Check if String Starts with LowerCase

A general requirement many people encounter while working with javascript strings is to check if the first letter of the string is lowercase. This article demonstrates easy ways to check if the string starts with lowercase using different methods and illustration examples. Table of Contents: Check if String Starts with LowerCase using toLowerCase() Check if

JavaScript: Check if String Starts with LowerCase Read More »

JavaScript: Check if String Starts with UpperCase

A general requirement many people encounter while working with javascript strings is to check if the first letter of the string is capitalized. This article demonstrates easy ways to check if the string starts with uppercase using different methods and illustration examples. Table of Contents: Check if String Starts with UpperCase using toUpperCase() Check if

JavaScript: Check if String Starts with UpperCase Read More »

Covert All Letters of String to Lower Case in JavaScript

Strings are JavaScript’s data type used to represent the textual data and are most commonly used. Many people encounter a general requirement to make all letters of javaScript String in lowercase. This article will discuss different ways to convert all the letters to lowercase using various examples. We will also discuss how to convert to

Covert All Letters of String to Lower Case in JavaScript Read More »

Scroll to Top