我想知道是否有一种原生/优雅的方式来做到这一点:
var object = {
value: 1,
desc: 'an object',
method: function(){
return this.description + ' with value: ' + this.value;
},
};
var onlyProperties = JSON.parse(JSON.stringify(object));
如您所见,我只想要其中没有任何方法的属性。上面的代码有效,但这样做感觉不对。