发布于 1年前

JS 检测是不是个数字(里面用到了数据类型检测的toType 方法)

// 检测是否是数字
    const isNumeric = function isNumeric(obj) {
        let type = toType(obj);
        return (type === "number" || type === "string") && !isNaN(obj);
    };
js
©2020 edoou.com   京ICP备16001874号-3