Skip to content

Instantly share code, notes, and snippets.

@nickheal
Last active November 20, 2020 10:57
Show Gist options
  • Save nickheal/44b9f178d3211dcb2d462b7666c1419f to your computer and use it in GitHub Desktop.
Save nickheal/44b9f178d3211dcb2d462b7666c1419f to your computer and use it in GitHub Desktop.
Concise code
function submitForm(name, telephone, email) {
if (!name || !telephone) {
showAlert();
return;
}
postForm();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment