输出对象中值⼤于2的key的数组 var data = {a: 1, b: 2, c: 3, d: 4}; Object.keys(data).filter(function(x) { return ();}) 期待输出:[“c”,”d”]