JavaScript | String endsWith()
str.endsWith() function is used to check whether the given string ends with the characters of the specified string or not.
Syntax: str.endsWith(searchString, length)
Arguments
The first argument to this function is a string of characters searchString which is to be searched at the end of the given string. The second argument to the function is length which determines the length of the given string from the beginning to be searched for the searchString.
Return value
This function returns the Boolean value true if the searchString is found else it returns the Boolean value false
Examples for the above function are provided below:
Example 1:
var str = 'It is a great day.' print(str.endsWith('day.'));
Output:
true
In this example the function endsWith() checks for searchString at the end of the given string. Since the searchString is found at the end, therefore this function returns true.
Example 2:
var str = 'It is a great day.' print(str.endsWith('great'));
Output:
false
In this example the function endsWith() checks for searchString at the end of the given string. Since the searchString is not found at the end, therefore this function returns false.
Example 3:
var str = 'It is a great day.' print(str.endsWith('great',13));
Output:
true
In this example the function endsWith() checks for searchString at the end of the given string. Since the second argument defines the end of the string at index 13 and at this index searchString is found to end, therefore this function returns true.
Codes for the above function are provided below:
Program 1:
<script> // JavaScript to illustrate endsWith() function function func() { // Original string var str = 'It is a great day.' ; // Finding the search string in the // given string var value = str.endsWith( 'day.' ); document.write(value); } func(); </script> print(value); |
Output:
true
Program 2:
// JavaScript to illustrate endsWith() function <script> function func() { // Original string var str = 'It is a great day.' ; // Finding the search string in the // given string var value = str.endsWith( 'great' ); document.write(value); } func(); </script> |
Output:
false
Program 3:
<script> // JavaScript to illustrate endsWith() function function func() { // Original string var str = 'It is a great day.' ; // Finding the search string in the // given string var value = str.endsWith( 'great' ,13); document.write(value); } func(); </script> |
Output:
true
Recommended Posts:
- JavaScript | Difference between String.slice and String.substring
- JavaScript | Check if a string is a valid JSON string
- JavaScript | Insert a string at position X of another string
- How to count string occurrence in string using JavaScript?
- JavaScript | string.codePointAt()
- JavaScript | string.toString()
- JavaScript | string.length
- JavaScript | string.localeCompare()
- JavaScript | string.slice()
- JavaScript | String.fromCodePoint()
- JavaScript | string.valueOf()
- JavaScript | string.repeat()
- JavaScript | String() Function
- JavaScript | string.substring()
- JavaScript | String includes()
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.