In this article we will discuss how to convert string to uppercase and lowercase using JavaScript. In JavaScript we can convert to Uppercase by using toUpperCase() method and for lowercase by toLowerCase() method.
In this article we will discuss how to add single quotes inside a string using JavaScript. This was achieved by two methods
In this article we will discuss how to concatenating string using JavaScript . Concatenating is achieved by two methods. You could use + operator or by concat() method.
In this article we will discuss how to convert strings to numbers using JavaScript. There are different methods available in JavaScript to convert.