Skip to content

Instantly share code, notes, and snippets.

@bh-lay
Last active August 4, 2016 10:32
Show Gist options
  • Select an option

  • Save bh-lay/6628ca38a2594abaa928f061c48063dc to your computer and use it in GitHub Desktop.

Select an option

Save bh-lay/6628ca38a2594abaa928f061c48063dc to your computer and use it in GitHub Desktop.
判断输入值是否为NaN
// 判断输入值是否为NaN
function isNaN( input ){
return input !== input;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment