suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript – Eine Zeile Code für den Quellcode von underscore.js schreiben

  _.isNaN = function(obj) {
        return _.isNumber(obj) && isNaN(obj); //_.isNumber ?
    }
巴扎黑巴扎黑2772 Tage vor517

Antworte allen(1)Ich werde antworten

  • phpcn_u1582

    phpcn_u15822017-05-19 10:42:56

    找到重点了。。。我看错了,原来在这里

     // Add some isType methods: isArguments, isFunction, isString, isNumber, isDate, isRegExp, isError, isMap, isWeakMap, isSet, isWeakSet.
        _.each(['Arguments', 'Function', 'String', 'Number', 'Date', 'RegExp', 'Error', 'Symbol', 'Map', 'WeakMap', 'Set', 'WeakSet'], function(name) {
            _['is' + name] = function(obj) {
                return toString.call(obj) === '[object ' + name + ']';
            };
        });
    

    Antwort
    0
  • StornierenAntwort