Skip to content

Instantly share code, notes, and snippets.

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