2020年10月-北京-天眼查面试题(已offer)

一面

  1. 性能监控
  2. vue
  3. 如何检测数据类型
/**
 * 识别某变量为对应类型,包含全部类型
 * @param {*} target - 待识别的变量
 * @param {String} type - 被判断的类型,全小写字符
 * @returns {boolean} 是否为被判断的类型
 */
function isType(target, type){
     }
// 示例
let a = '111';
isType(a, 'string') 返回值为true
isType(a, 'number') 返回值为false

二面

  1. 合并数组[4,1,3,9,6,2]和[8,5,3,2,1,4,7],然后去重,取出所有偶数并从大到小输出
  2. 1234567890转为¥1,234,567,890

你可能感兴趣的:(大前端,面试题目,天眼查,面试题)