Л
Size: a a a
Л
VS
RR
Л
VB
VS
OK
RR
VS
VS
NK

VG
NK
Object.hasOwn({ value: 42 }, 'value'); // Returns `true`.
Error causeErrors can now be optionally constructed with a cause option, pointing to another error.https://github.com/nodejs/node/releases/tag/v16.9.0
This adds a cause property on the new error:
const error1 = new Error('Error one');
const error2 = new Error('Error two', { cause: error1 });
// error2.cause === error1
A
AV
O
AP
O
AP
AP