Skip to content

Instantly share code, notes, and snippets.

@Dosant
Created March 5, 2017 08:50
Show Gist options
  • Save Dosant/81f2916247731a4d0d22fa2ec044ee03 to your computer and use it in GitHub Desktop.
Save Dosant/81f2916247731a4d0d22fa2ec044ee03 to your computer and use it in GitHub Desktop.
var phrase = 'Привет';
function sayHi(name) {
alert(phrase + ', ' + name);
}
sayHi('Вася'); // Привет, Вася (*)
phrase = 'Пока';
sayHi('Вася'); // Пока, Вася (**)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment