Chrome Devtools - Pourquoi la variable s'affiche-t-elle en montre mais pas sous la portée

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

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