22
loading...
This website collects cookies to deliver better user experience
<textarea>
below the button).Item | Ingredients |
---|---|
Bun | sesame seed |
Patties | elk burger patty, beef burger patty |
Sauces | chow chow, hot sauce, guacamole |
Toppings | turkey bacon, bacon, turkey bacon |
Cheeses | grilled halloumi, American cheese, blue cheese (stilton) |
Salads | coleslaw |
Item | Ingredients |
---|---|
Bun | crusty |
Patties | chicken breast burger patty, beef burger patty, bean burger patty |
Sauces | ranch dressing, chimichurri, sweet chilli |
Toppings | sweet potato fries, serrano ham, sweet potato fries |
Cheeses | american cheese |
Salads | lettuce, gherkin / pickles |
Item | Ingredients |
---|---|
Bun | sesame seed |
Patties | elk burger patty |
Sauces | maple syrup, bbq |
Toppings | serrano ham, onion rings, pulled pork |
Cheeses | american cheese, goats cheese |
Salads | coleslaw, roasted red peppers |
var seededRandom = function(seed, max, min) {
max = max || 1000000000;
min = min || 137;
seed = (seed * 9301 + 49297) % 233280;
var rnd = seed / 233280;
return Math.round(min + rnd * (max - min), 0);
}
seededRandom
function does what I need it to do and that was where this all started.