check is key exists

PHOTO EMBED

Mon Jul 08 2024 22:54:44 GMT+0000 (Coordinated Universal Time)

Saved by @davidmchale #checking #object

// 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);
content_copyCOPY