Share notes, links, code, screenshots and small documents instantly across any device. No accounts, no installs, no friction. Just drop and open anywhere.
// Function to calculate total price function total(items) { return items.reduce( (sum, item) => sum + item.price, 0); }