// Ensure object exists
currentAccount ||= {};
// Ensure movementsDates exists if currentAccount already has it defined
currentAccount.movementsDates ||= [];
// Add the current date in ISO format to the movementsDates array
currentAccount.movementsDates.push(new Date().toISOString());
console.log(currentAccount.movementsDates);