检查给定的参数是否是一个数字。
使用 typeof 来检查一个值是否为一个数字。
typeof
const isNumber = val => typeof val === 'number';
isNumber('1'); // false isNumber(1); // true