Console logging object shows 2 different values
问题 This is insane, or is it?! If I access departuredate directly I get the correct value of 2016-05-18. console.log(searchFactory.search.searchparams.journeys[0].departuredate); // 2016-05-18 console.log(searchFactory.search.searchparams.journeys[0] //stored in the object as 2010-05-10 However if I console.log() the entire object as in the attached screenshot, it is reset to todays date. How is that even possible? Ultimately the value is assigned to my Factory, which ends up being 2016-05-10 -