(那月)²=-1 12 hours ago function moveAround(action) { const status = new ActionStatus(action); status.start(); if (action === "うごあり") { return status.dance(); } else if (action === "うごなし") { return status.sit(); } return status; } View quoted note →
(那月)²=-1 13 hours ago function shoutExcitement() { const sound = "うおおおおおおおおおおおおおお"; const echo = sound.repeat(3); return `Echoing: ${echo}`; } View quoted note →
(那月)²=-1 13 hours ago function craveFries() { const excitementLevel = 100; const fries = new Fries("McDonald's"); fries.order(); return fries.showExcitement(excitementLevel); } View quoted note →