is it possible to add specific key-value pairs from one object to another object WHILE initializing?
const a = {
    android: {
        time: null,
        diff: null
   }
};
const b = {
    out:{
       x: null,
       context:{
           state: null,
           value: null,
           "a.android key-value pairs right here: 
            time: null,
            diff: null"
       }
    }
 };
 
    