Skip to content

Instantly share code, notes, and snippets.

@Dosant
Created February 26, 2017 06:56
Show Gist options
  • Save Dosant/64f7f13aad0eb5f8b326309b74ec3486 to your computer and use it in GitHub Desktop.
Save Dosant/64f7f13aad0eb5f8b326309b74ec3486 to your computer and use it in GitHub Desktop.
function ask(question, yes, no) {
if (confirm(question)) yes()
else no();
}
ask(
"Вы согласны?",
function() { alert("Вы согласились."); },
function() { alert("Вы отменили выполнение."); }
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment