const testOne = {
  'attr': 'origin',
}
testTwo = Object.create(testOne); // This is a testOne's inheritance.
console.log(testTwo.attr);
delete testTwo.attr;
console.log(testTwo.attr); // To show 'origin', because this prototype of testTwo is testOne.