// 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);
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter