Underscore.JS - método isUndefined

Sintaxe

_.isUndefined(object)

O método isUndefined verifica se o objeto é isUndefined. Veja o exemplo abaixo -

Exemplo

var _ = require('underscore');

var value;
//Example 1: Check if argument passed is undefined
console.log(_.isUndefined(value));

value = 0;
//Example 2: Check if argument passed is not undefined
console.log(_.isUndefined(value));

Salve o programa acima em tester.js. Execute o seguinte comando para executar este programa.

Comando

\>node tester.js

Resultado

true
false