Last active
July 27, 2018 01:38
-
-
Save rrameshbtech/f863d4600e594b22cdb609eb50f2d690 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: '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