为什么在这里使用解构分配?它到底在做什么?

时间:2018-10-15 18:38:56

标签: javascript node.js destructuring

Node JS Child Process documentation中,在示例中给出以下行:

const { spawn } = require('child_process');

为什么在这里使用destructuring分配?它到底在做什么?这是否意味着require('child_process')返回具有多个元素的对象,而“ spawn”是第一个? (我以为对象的元素没有任何保证的顺序?)

0 个答案:

没有答案