Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Lodash _.endsWith() Method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Lodash is a JavaScript library that works on the top of underscore.js. Lodash helps in working with arrays, strings, objects, numbers, etc.  

The _.endsWith() method is used to check whether the string ends with the given target string or not.

Syntax:

_.endsWith([string=''], [target], [position=string.length])

Parameters: This method accepts three parameters as mentioned above and described below:

  • string: This parameter holds the string that need to inspect.
  • target: This parameter holds the string that need to search.
  • position: This parameter holds the position where search the string.

Return Value: This method returns true if string ends with target string, false otherwise.

Example 1:

Javascript




const _ = require('lodash'); 
  
var str1 = _.endsWith("GeeksforGeeks", "s");
console.log(str1);
  
var str2 = _.endsWith("GeeksforGeeks", "G");
console.log(str2);
  
var str3 = _.endsWith("GeeksforGeeks", "Geeks");
console.log(str3);

Output:

true
false
true

Example 2:

Javascript




const _ = require('lodash'); 
  
var str1 = _.endsWith("GFG", "F", 2);
console.log(str1);
  
var str2 = _.endsWith("GeeksforGeeks", "f", 5);
console.log(str2);
  
var str3 = _.endsWith("GeeksforGeeks", "for", 8);
console.log(str3);

Output:

true
false
true
My Personal Notes arrow_drop_up
Last Updated : 07 Sep, 2020
Like Article
Save Article
Similar Reads
Related Tutorials