Last active
July 30, 2018 09:22
-
-
Save rrameshbtech/87887f56eae4859789b9a6e64ac43911 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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