var newarr = Object.values(object1);
function type(v){
return Object.prototype.toString.call(v);
};
console.log('Object.values(object1)');
console.log(newarr);
console.log(type(newarr));
这篇博客介绍了如何使用JavaScript的Object.prototype.toString.call方法判断对象的具体类型。通过示例代码var newarr = Object.values(object1); 和自定义函数type(v){return Object.prototype.toString.call(v);};展示了如何获取并打印Object.values()返回值的类型,最后console.log(type(newarr))用于输出类型信息。
var newarr = Object.values(object1);
function type(v){
return Object.prototype.toString.call(v);
};
console.log('Object.values(object1)');
console.log(newarr);
console.log(type(newarr));
4116
6840

被折叠的 条评论
为什么被折叠?