Skip to content

Instantly share code, notes, and snippets.

@jaamaalxyz
Last active February 27, 2018 03:43
Show Gist options
  • Save jaamaalxyz/18e4ba6fe06abf16b8f4984376820fa9 to your computer and use it in GitHub Desktop.
Save jaamaalxyz/18e4ba6fe06abf16b8f4984376820fa9 to your computer and use it in GitHub Desktop.
// Price for groceries
var potatoPrice = 20;
var tomatoPrice = 30;
var fishPrice = 160;
// Output
console.log(potatoPrice); // Output should be: 20
console.log(tomatoPrice); // Output should be: 30
console.log(fishPrice); // Output should be: 160
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment