30秒学会 JavaScript 片段 · 2018年11月13日

30秒学会 JavaScript 片段 – validateNumber

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.

代码片段

const validateNumber = n => !isNaN(parseFloat(n)) && isFinite(n) && Number(n) == n;

使用样例

validateNumber('10'); // true