I was asked this in an interview. I couldn't answer. Not sure if it was a trick question.
let a = {}
and
let a = new Object
new Object()
has a default argument value of {}
You can also initialize an Array with new Object
const a = new Object([]);
See here.