Js print console.log display question

ask why the js console prints the result of console.log. If you don"t drop down the console.log, you can see 2018-12-28. After the drop-down, it becomes empty.

    var today = new Date();
    var date =
      today.getFullYear() +
      "-" +
      (today.getMonth() + 1) +
      "-" +
      today.getDate() +
      " 00:00";
      this.activity.start_at  = date;
      console.log(this.activity);
      

clipboard.png

Mar.19,2022

the value still exists when printing, and then it is changed (usually the reference is not eliminated and modified)

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b37bc1-2c0d0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b37bc1-2c0d0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?