The correct way to create a new empty object in JavaScript is let obj = {}; or alternatively let obj = new Object();. The curly braces {} notation is object literal syntax for creating an empty object. In contrast, let obj = []; creates an empty array, let obj = ''; creates an empty string, and let obj = null; assigns the null value to the variable, not an empty object.