Skip to content

Instantly share code, notes, and snippets.

@Dosant
Created March 5, 2017 08:52
Show Gist options
  • Save Dosant/6bb03d19a1e91654005727ef04978207 to your computer and use it in GitHub Desktop.
Save Dosant/6bb03d19a1e91654005727ef04978207 to your computer and use it in GitHub Desktop.
function sayHiBye(firstName, lastName) {
alert( "Привет, " + getFullName() );
alert( "Пока, " + getFullName() );
function getFullName() {
return firstName + " " + lastName;
}
}
sayHiBye("Вася", "Пупкин"); // Привет, Вася Пупкин ; Пока, Вася Пупкин
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment