movie_night_poem.js
const richard = {
heart: "completely full",
loves: "Kate",
favoriteGenre: "documentaries",
secretTruth: "I'd watch anything with you"
};
const kate = {
heart: "perfectly matched",
loves: "Richard",
favoriteGenre: "comedies",
laughter: "the sound I live for"
};
function movieNight() {
let yourPick = "a comedy that makes you laugh";
let myPick = "a documentary I'll pretend to watch";
const whatReallyMatters = `
Not the films we choose,
not the genres we browse,
but the way you fit beside me
like a missing puzzle piece
finally come home.
`;
return whatReallyMatters;
}
class OurEvening {
constructor() {
this.couch = "our tiny universe";
this.blanket = "shared warmth";
this.snacks = "forgotten halfway through";
}
yourChoice() {
return "I fall in love again";
}
myChoice() {
return "any excuse to stay close longer";
}
}
const theRealPlot = {
genre: "romance",
starring: ["Richard", "Kate"],
runtime: "forever, if I'm lucky",
synopsis: `
Two people who found each other
making up reasons to press pause on the world,
choosing films like choosing flowers—
it was never about the petals,
only the giving.
`
};
function whenYouAsk() {
const myAnswer = "yours";
const myMeaning = `
Because your comedies mean
I get to hear you laugh,
and my documentaries mean
you'll lean your head on my shoulder
and whisper "explain this part"
just so I'll talk to you.
`;
return myMeaning;
}
while (true) {
let timeWithYou = "never enough";
let distanceBetweenUs = 0;
let reasonsToStay = Infinity;
const answer = "always yes";
break;
}
console.log("I love you, Kate.");
console.log("Now... your pick or mine?");