Skip to content

Instantly share code, notes, and snippets.

@AlexJWayne
Created January 3, 2014 21:06
Show Gist options
  • Select an option

  • Save AlexJWayne/8246604 to your computer and use it in GitHub Desktop.

Select an option

Save AlexJWayne/8246604 to your computer and use it in GitHub Desktop.
function test(email, name) {
if (email == "" || name == "") {
alert("Enter mail or name");
}
return false;
if (email.indexOf("@") == -1) {
alert("Bad email");
}
return false;
var a = email.length;
var b = name.length;
if (a == > 0, b == > 0) {
alert("Message sent");
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment