Open In App

Underscore.js _.gte() Method

Last Updated : 04 Aug, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The _.gte() Method checks whether each argument is greater than or equal to its next argument.

Syntax:

_.gte( val1, val2,..., valn );

Parameters: This method takes n values to operate on them.

Return Value: This method returns a Boolean value.

Note: This will not work in normal JavaScript because it requires the underscore.js contrib library to be installed. 

underscore.js contrib library can be installed using npm install underscore-contrib –save.

Example 1: 

Javascript




// Defining underscore contrib variable
var _ = require('underscore-contrib'); 
  
  
var greater  = _.gte(4, 1, 1);
  
console.log("Each argument is greater than or"+
            " equal to its next argument :",greater);


Output:

Each argument is greater than or equal to 
its next argument : true

Example 2:

Javascript




// Defining underscore contrib variable
var _ = require('underscore-contrib'); 
  
var greater  = _.gte(4, 3, 2, 1);
  
console.log("Each argument is greater than or"+
            " equal to its next argument :",greater);


Output:

Each argument is greater than or equal to 
its next argument : true

Example 3: 

Javascript




// Defining underscore contrib variable
var _ = require('underscore-contrib'); 
  
var greater  = _.gte(4, 3, 2, 1, 44);
  
console.log("Each argument is greater than or"+
            " equal to its next argument :",greater);


Output:

Each argument is greater than or equal 
to its next argument : false


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads