Careers

Join us!

Interested in joining our team? Check out our current available roles below.

Get in touch

Send us a message and we'll be in touch!

Bookr, Inc.

2099 Mt. Diablo Blvd. Ste 201, Walnut Creek, CA

+1 (925) 663-0809
contact@bookr.inc
Oops! Something went wrong while submitting the form.
(function difference() { // 🧠 helpers const log = console.log; const oneDay = 24 * 60 * 60 * 1000; // in milliseconds // 🧠 get published date const published = document.getElementById("published").innerHTML; const array = published.split("/"); const firstDate = new Date(array[0], array[1], array[2]); log(array); // 🧠 get current date const currentDate = new Date(); const year = currentDate.getFullYear(); const month = currentDate.getMonth() + 1; const day = currentDate.getDate(); const secondDate = new Date(year, month, day); log(year, month, day); // 🧠 get days difference const diffDays = Math.round(Math.abs((firstDate - secondDate) / oneDay)); log(diffDays); // 🧠 inject difference value back into HTML const elapsed = document.getElementById("elapsed"); elapsed.innerHTML = `posted ${diffDays} days ago`; })();