Skip to content

Instantly share code, notes, and snippets.

@NonSpicyBurrito
NonSpicyBurrito / sim.js
Created July 21, 2022 05:43
SIF Box Pull Simulation
const ticketsPerBox = 1
const sayasPerBox = 3
const teachersPerBox = 4
const itemsPerBox = 100
class Box {
tickets = ticketsPerBox
sayas = sayasPerBox
teachers = teachersPerBox
trash = itemsPerBox - (ticketsPerBox + sayasPerBox + teachersPerBox)