_.isJSON() valor booleano correspondiente.
Sintaxis:
_.isJSON( value );
Parámetros:
- valor: valor dado para verificar JSON.
Valor devuelto: este método devuelve un valor booleano (devuelve verdadero si el valor dado es JSON válido, de lo contrario, falso).
Nota: npm install subrayado-contrib.
Ejemplo 1:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); // Checking console.log("The Value is JSON : " +_.isJSON( '{"GeeksforGeeks" : "A Computer Science portal for Geeks"}'));
Producción:
The Value is JSON : true
Ejemplo 2: para el mapeo, se devolverá falso.
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); // Checking console.log("The Value is JSON : " +_.isJSON( {GeeksforGeeks : "A Computer Science portal for Geeks"}));
Producción:
The Value is JSON : false
Ejemplo 3: para otros valores, este método devuelve falso.
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); // Checking console.log("The Value is JSON : " + _.isJSON(["gfg"]));
Producción:
The Value is JSON : false