Function getType

  • 获取变量类型

    Parameters

    • variable: any

      变量

    Returns string

    getType(1); /// 'number'
    getType(async function(){}); /// 'asyncfunction'