Skip to content

Instantly share code, notes, and snippets.

@jasminegmp
Created February 20, 2020 02:03
Show Gist options
  • Save jasminegmp/3f83f8720c607acb855a50f9f1e1e5ca to your computer and use it in GitHub Desktop.
Save jasminegmp/3f83f8720c607acb855a50f9f1e1e5ca to your computer and use it in GitHub Desktop.
let Dog = function(breed){
this.breed = breed;
}
let chihuahua = new Dog('Chihuahua');
console.log(chihuahua); // will output Dog { breed: 'Chihuahua' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment