Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ufocoder/4426e0209fd95e57df54cf0acc68d30a to your computer and use it in GitHub Desktop.

Select an option

Save ufocoder/4426e0209fd95e57df54cf0acc68d30a to your computer and use it in GitHub Desktop.
Hidden classes in JavaScript and Inline Caching
function Person(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}
var ironMan = new Person('Tony', 'Stark');
var captainAmerica = new Person('Steve', 'Rogers');
captainAmerica.age = 87;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment