📅  最后修改于: 2022-03-11 15:04:16.178000             🧑  作者: Mango
const { bar } = foo; // where foo = { bar:5, baz:2, bat: 10 };
/* This creates a constant with the name 'bar', which has a value of 5 */
const { message } = new assert.AssertionError({
actual: 1,
expected: 2,
operator: 'strictEqual'
});