List all global variables in Node.js

后端 未结 3 1346
隐瞒了意图╮
隐瞒了意图╮ 2021-01-01 22:25

I\'m trying to list all of the global variables, including those refering to built-in objects.

In Chrome\'s console I can simply type this and get back

3条回答
  •  猫巷女王i
    2021-01-01 22:41

    The built-in properties of the global object are non-enumerable, so Object.keys doesn't return them. You can use Object.getOwnPropertyNames instead.

提交回复
热议问题