Last active
June 30, 2019 13:39
-
-
Save AliN11/1c6dad911e1c8ea2aec53794171deb5b to your computer and use it in GitHub Desktop.
This file contains 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
window.name = 'شایان شایان پرور'; | |
function greeting() { | |
console.log('سلام آقای ' + window.name); | |
} | |
greeting(); // سلام آقای شایان شایان پرور | |
// ... | |
function userCustomFunction() { | |
window.name = 'سارا سارانژاد'; | |
} | |
userCustomFunction(); | |
greeting(); // سلام آقای سارا سارانژاد | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment