Método Lodash _.isNumeric()

El método Lodash _.isNumeric() verifica si el valor dado es un valor numérico o no y devuelve el valor booleano correspondiente. Puede ser una string que contenga un valor numérico, una notación exponencial o un objeto numérico, etc.

Sintaxis:

_.isNumeric( value );

Parámetros: este método toma un solo parámetro como se mencionó anteriormente y se describe a continuación:

  • value: valor dado para verificar el valor numérico.

Valor devuelto: este método devuelve un valor booleano verdadero si el valor dado es numérico, de lo contrario, falso.

Nota: Esto no funcionará en JavaScript normal porque requiere que se instale la biblioteca de contribuciones lodash.js. La biblioteca de contribuciones de Lodash.js se puede instalar mediante npm install lodash-contrib .

Ejemplo 1:

Javascript

// Defining lodash contrib variable 
var _ = require('lodash-contrib'); 
  
// Checking for _.isNumeric() method
console.log("The Value is Numeric : " + _.isNumeric(10000));  
  
console.log("The Value is Negative : " + _.isNumeric(10.5)); 
  
console.log("The Value is Negative : " + _.isNumeric('G')); 
  
console.log("The Value is Negative : " + _.isNumeric('Geeks'));

Producción:

The Value is Numeric : true
The Value is Negative : true
The Value is Negative : false
The Value is Negative : false

Ejemplo 2:

Javascript

// Defining lodash contrib variable 
var _ = require('lodash-contrib'); 
  
// Checking for _.isNumeric() method
console.log("The Value is Numeric : " + _.isNumeric([1,10]));  
  
console.log("The Value is Negative : " + _.isNumeric("500")); 
  
console.log("The Value is Negative : " + _.isNumeric({})); 
  
console.log("The Value is Negative : " + _.isNumeric(null));

Producción:

The Value is Numeric : false
The Value is Negative : true
The Value is Negative : false
The Value is Negative : false

Publicación traducida automáticamente

Artículo escrito por AshokJaiswal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *