Menu

gitpiper

validateNumber javascript Code Snippet in 2024

mathintermediate

Last Updated: 20 April 2024

Checks if the given value is a number.

  • Use parseFloat() to try to convert n to a number.
  • Use !Number.isNaN() to check if num is a number.
  • Use Number.isFinite() to check if num is finite.
  • Use Number() and the loose equality operator (==) to check if the coercion holds.
const validateNumber = n => { const num = parseFloat(n); return !Number.isNaN(num) && Number.isFinite(num) && Number(n) == n; }
validateNumber('10'); // true validateNumber('a'); // false

javascript snippet similar to validateNumber For You in April 2024

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️

© 2024 GitPiper. All rights reserved

Rackpiper Technology Inc

Company

About UsBlogContact

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️