Entity instantiation
A quick explanation of how new instances of entities can be created during execution.
// Inside a Function
let person = new Person();
person.FirstName = "John";
person.LastName = "Doe"
return person;let person = new Person({ FirstName: "John", LastName: "Doe"});
return person;let person = new Person({ FirstName: "John", LastName: "Doe"});
return person.FullName; // "John Doe"