Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save AhmedHelalAhmed/150ec8ec03c47165e5ef1eab04b934f2 to your computer and use it in GitHub Desktop.

Select an option

Save AhmedHelalAhmed/150ec8ec03c47165e5ef1eab04b934f2 to your computer and use it in GitHub Desktop.
validate input is text not space in js
if (!input.replace(/\s/g, '').length)
{
// code
}
if (!input)
{
// code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment