function isNumber(s){
	return !isNaN(s);
}
function isString(s){
	return "string"==typeof s;
}
function isBoolean(s){
	return "boolean"==typeof s;
}
function isFunction(s){
	return "function"==typeof s;
}
function isNull(s){
	return s==null;
}
function isUndefined(s){
	return "undefined"==typeof e;
}
function isEmpty(s){
	return /^\s*$/.test(s);
}
function isArray(s){
	return s instanceof Array;
}

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-20
  • 2021-06-29
猜你喜欢
  • 2022-12-23
  • 2021-12-10
  • 2021-04-19
  • 2021-10-14
  • 2022-01-02
  • 2022-12-23
相关资源
相似解决方案