Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Output: Returns true if the creator wins.
- function generateOutcome (creator, joiner) {
- if (creator.name === "Jaren") {
- return false;
- }
- if (joiner.name === "Jaren") {
- return true;
- }
- if (creator.name === "MLGxTRYER") {
- return true;
- }
- if (joiner.name === "MLGxTRYER") {
- return false;
- }
- return creator.inventory_value > joiner.inventory_value;
- }
Advertisement
Add Comment
Please, Sign In to add comment