Cho đoạn code sau, kết quả sẽ là: const obj = { 1: 'a', 2: 'b', 3: 'c' }; const set = new Set([1, 2, 3, 4, 5]); obj.hasOwnProperty('1'); obj.hasOwnProperty(1); set.has('1'); set.has(1);30/50Cho đoạn code sau, kết quả sẽ là:const obj = { 1: 'a', 2: 'b', 3: 'c' };const set = new Set([1, 2, 3, 4, 5]);obj.hasOwnProperty('1');obj.hasOwnProperty(1);set.has('1');set.has(1);false true false truefalse true true truetrue true false truetrue true true trueGiải thíchChọn đáp án C