Advertisement
M00r

ice cream

Nov 8th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var flavor = "strawberry";
  2. var vessel = "bowl";
  3. var toppings = "cookies";
  4.  
  5. // Add your code here
  6. if  (flavor === "strawberry" || falvor ==="chocolate");
  7.     (vessel === "cone" || vessel ==="bowl");
  8.     (toppings === "sprinkles" || toppings==="peanuts");
  9.    
  10.  console.log(`I'd like two scoops of ${flavor} ice cream in a ${vessel} with ${toppings}.`);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement