Skip to content

Instantly share code, notes, and snippets.

@rrameshbtech
Last active July 30, 2018 09:22
Show Gist options
  • Save rrameshbtech/87887f56eae4859789b9a6e64ac43911 to your computer and use it in GitHub Desktop.
Save rrameshbtech/87887f56eae4859789b9a6e64ac43911 to your computer and use it in GitHub Desktop.
let manchesterOfSouthIndia = {
city: 'Coimbatore',
speciality: 'cotton industries',
getSpeciality: function() {
return this.city + ' is known for ' + this.speciality;
}
}
console.log(manchesterOfSouthIndia.getSpeciality()); // Coimbatore is known for cotton industries
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment