Home / Javascript Tips Generated By ChatGPT / Understanding the new Keyword in Javascript Create new instances of objects with constructor functions. Source Code function Person(name) { this.name = name; } let person = new Person('John');