Files
30-seconds-of-code/snippets/validateNumber.md
Angelos Chalaris 611729214a Snippet format update
To match the starter (for the migration)
2019-08-13 10:29:12 +03:00

18 lines
451 B
Markdown

---
title: validateNumber
tags: utility,math,intermediate
---
Returns `true` if the given value is a number, `false` otherwise.
Use `!isNaN()` in combination with `parseFloat()` to check if the argument is a number.
Use `isFinite()` to check if the number is finite.
Use `Number()` to check if the coercion holds.
```js
const validateNumber = n => !isNaN(parseFloat(n)) && isFinite(n) && Number(n) == n;
```
```js
validateNumber('10'); // true
```