码迷,mamicode.com
首页 > Web开发 > 详细

常用js函数封装

时间:2019-11-07 13:31:12      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:json   item   str   color   reac   font   too   string   iso   

  • 判断object
  • 判断undefined
  • 判断非undefined
  • 转换成字符串
  • 数组转换成对象

 

判断object

function isObject(obj){
    return obj !== null && typeof obj===‘object‘
}

判断undefined

function isUndef(v){
    return v===undefined || v===null
}

判断非undefined

function isUndef(v){
    return v!==undefined && v!==null
}

转换成字符串

function toString(val){
  return val == null? ‘‘: typeof val===‘object‘? JSON.stringify(val): String(val);
}

数组转换成对象

function toObject(arr){
  var res={};
  arr.forEach((item,index)=>{
    res[index]=item;
  });
  return res
}

 

常用js函数封装

标签:json   item   str   color   reac   font   too   string   iso   

原文地址:https://www.cnblogs.com/jingouli/p/11811201.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!