Test out an asychronous system in JavaScript

PHOTO EMBED

Sat Nov 11 2023 10:43:55 GMT+0000 (Coordinated Universal Time)

Saved by @temycodes

console.log("I")

setTimeout(() => {

    console.log("love 💕");

}, 2000);

console.log("Pancakes");
content_copyCOPY