Skip to content

Instantly share code, notes, and snippets.

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