Share notes, links, code, screenshots and small documents instantly across any device. Start immediately — no account needed. Log in later anytime to sync or upgrade.
// Function to calculate total price function total(items) { return items.reduce( (sum, item) => sum + item.price, 0); }