Homework - isel-leic-ipw/2425i-IPW-LEIC33D GitHub Wiki


HW 01


HW 02


HW 03

  • Change the console.log behavior to prefix its messages with the current date and time

console.log("SLB", {a: 1}, 123)  // outputs  => SLB { a: 1 } 123


// change console.log behavior

console.log("SLB", {a: 1}, 123)  // outputs  => [2024-09-23T17:26:01.032Z]: SLB { a: 1 } 123