Chrome DevTools - Mengapa Variabel Display Di Watch tetapi Tidak Di Bawah Singkirkan

a = {test1: 'test1'}
b = {test2: 'test2', __proto__: a}

b >> {test2: "test2", [[Prototype]]: Object}
b.test1 >> 'test1'
SAMER SAEID