Node-Red configuration
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

undef.js 302B

123456789101112
  1. var test = require('tape');
  2. var inspect = require('../');
  3. var obj = { a: 1, b: [3, 4, undefined, null], c: undefined, d: null };
  4. test('undef and null', function (t) {
  5. t.plan(1);
  6. t.equal(
  7. inspect(obj),
  8. '{ a: 1, b: [ 3, 4, undefined, null ], c: undefined, d: null }'
  9. );
  10. });