function Fn() {
console.log(new.target);
console.log(this instanceof Fn);
}
new.target and 'this' relationship: 1) new.target indicates constructor call, 2) 'this' is new object in constructor, 3) Both help identify proper instantiation, 4) Different purposes but related usage, 5) Useful for enforcing construction, 6) Important for creating proper objects.