JavaScript String
The JavaScript string is an object that represents a sequence of characters.
There are 2 ways to create string in JavaScript
- By string literal
- By string object (using new keyword)
1) By string literal
The string literal is created using double quotes. The syntax of creating string using string literal is given below:
Let’s see the simple example of creating string literal.
Output:
This is string literal
2) By string object (using new keyword)
The syntax of creating string object using new keyword is given below:
Here, new keyword is used to create instance of string.
Let’s see the example of creating string in JavaScript by new keyword.
Output:
hello javascript string
JavaScript String Methods
Let's see the list of JavaScript string methods with examples.
- charAt(index)
- concat(str)
- indexOf(str)
- lastIndexOf(str)
- toLowerCase()
- toUpperCase()
- slice(beginIndex, endIndex)
- trim()
1) JavaScript String charAt(index) Method
The JavaScript String charAt() method returns the character at the given index.
Output:
v
2) JavaScript String concat(str) Method
The JavaScript String concat(str) method concatenates or joins two strings.
Output:
javascript concat example
3) JavaScript String indexOf(str) Method
The JavaScript String indexOf(str) method returns the index position of the given string.
Output:
11
4) JavaScript String lastIndexOf(str) Method
The JavaScript String lastIndexOf(str) method returns the last index position of the given string.
Output:
16
5) JavaScript String toLowerCase() Method
The JavaScript String toLowerCase() method returns the given string in lowercase letters.
Output:
javascript tolowercase example
6) JavaScript String toUpperCase() Method
The JavaScript String toUpperCase() method returns the given string in uppercase letters.
Output:
JAVASCRIPT TOUPPERCASE EXAMPLE
7) JavaScript String slice(beginIndex, endIndex) Method
The JavaScript String slice(beginIndex, endIndex) method returns the parts of string from given beginIndex to endIndex. In slice() method, beginIndex is inclusive and endIndex is exclusive.
Output:
cde
8) JavaScript String trim() Method
The JavaScript String trim() method removes leading and trailing whitespaces from the string.
Output:
javascript trim
No comments:
Post a Comment