For example,
var a = {prop1:'asd',prop2:'zxc'};
console.log(a);
and the intended return is just one of the property and not all shown, like
{prop1:'asd'} // or just asd
Selective property are being displayed only, without going through
a.prop1
but just
a