zoukankan      html  css  js  c++  java
  • 判断string,object,array,number的JS函数

        /**
    * Check for string
    * @param {Object} s
    */
        function isString(s) {
            return typeof s === 'string';
        }
     
        /**
    * Check for object
    * @param {Object} obj
    */
        function isObject(obj) {
            return typeof obj === 'object';
        }
     
        /**
    * Check for array
    * @param {Object} obj
    */
        function isArray(obj) {
            return Object.prototype.toString.call(obj) === '[object Array]';
        }
     
        /**
    * Check for number
    * @param {Object} n
    */
        function isNumber(n) {
            return typeof n === 'number';
        }
  • 相关阅读:
    kolla
    lbaas
    celery
    redis发布订阅
    数据库简单介绍
    celery
    ansible初识
    315
    request
    navicat连接mysql报错1251解决方案
  • 原文地址:https://www.cnblogs.com/lfire/p/2701871.html
Copyright © 2011-2022 走看看