Just curious if anyone knows if there is a difference between:
const dict = Object.setPrototypeOf({}, null);
and
const dict = Object.create(null);
Just curious if anyone knows if there is a difference between:
const dict = Object.setPrototypeOf({}, null);
and
const dict = Object.create(null);