Last active
July 25, 2018 16:13
-
-
Save rrameshbtech/25688cd048a63ad3d45305c1ebf564d4 to your computer and use it in GitHub Desktop.
JavaScript-Magic Words:this
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
var city = 'Karur'; | |
console.log(this.city); // Karur | |
console.log(city); //Karur |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment