Why is the variable declared with “var” keyword inside a function scope not stored inside window object?

snapshot of code inside chrome dev tools debugger

As seen from the above snapshot, the variable “age” exists in the local scope but outside the window object. Why does it happen? Is there any in-depth explanation to it.

I checked the values and scope state using chrome dev tools debugger.