Skip to content

Instantly share code, notes, and snippets.

@McLarenCollege
Created August 30, 2021 06:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save McLarenCollege/6006a7e2238983dc6fda86a302e3cd14 to your computer and use it in GitHub Desktop.
Save McLarenCollege/6006a7e2238983dc6fda86a302e3cd14 to your computer and use it in GitHub Desktop.
Favorite Colors

Given a person's three favorite colors write an expression to print them in the below format

let name = "John";
let color1 = "red";
let color2 = "blue";
let color3 = "green";
// write expression here
should print "John's favourite colors are red, blue and green."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment