复制1const obj = { 1: 'a', 2: 'b', 3: 'c' } 2const set = new Set([1, 2, 3, 4, 5]) 3 4obj.hasOwnProperty('1') 5obj.hasOwnProperty(1) 6set.has('1') 7set.has(1)
1const obj = { 1: 'a', 2: 'b', 3: 'c' } 2const set = new Set([1, 2, 3, 4, 5]) 3 4obj.hasOwnProperty('1') 5obj.hasOwnProperty(1) 6set.has('1') 7set.has(1)
本题为“单选题”
题库维护不易,您的支持就是我们最大的动力!