Cookie

function collectCookies(userChoice) {
    if (userChoice === 'OK, Got It') {
        console.log("Thanks for agreeing! 🍪 We’re collecting your cookies.");
    } else if (userChoice === 'No') {
        console.log("We’re still collecting your cookies by default... ╰(*°▽°*)╯");
    }
}

Posting Komentar