Subrayado.js _.isNumeric() Método

_.isNumeric() y devuelve el valor booleano correspondiente. Número

Sintaxis:

_.isNumeric( value );

Parámetros: 

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

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

Nota: npm install underscore-contrib .

Ejemplo 1:

Javascript

// Defining underscore contrib variable
var _ = require('underscore-contrib'); 
  
// Checking
console.log("The Value is Numeric : " 
    + _.isNumeric(10000)); 

Producción:

The Value is Numeric : true

Ejemplo 2: una array siempre devolverá falso. 

Javascript

// Defining underscore contrib variable
var _ = require('underscore-contrib'); 
  
// Checking
console.log("The Value is Numeric : " 
    + _.isNumeric([1,10])); 

Producción:

The Value is Numeric : false

Ejemplo 3: 

Javascript

// Defining underscore contrib variable
var _ = require('underscore-contrib'); 
  
// Checking
console.log("The Value is Numeric : " 
    + _.isNumeric(2.333)); 

Producción:

The Value is Numeric : true

Ejemplo 4: una string que contiene un valor numérico devolverá verdadero.

Javascript

// Defining underscore contrib variable
var _ = require('underscore-contrib'); 
  
// Checking
console.log("The Value is Numeric : " 
    + _.isNumeric("1000")); 

Producción:

The Value is Numeric : true

Publicación traducida automáticamente

Artículo escrito por taran910 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 *