benjaminvr

Codecademy - Global scope

Jul 7th, 2021
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const satellite = 'The Moon';
  2. const galaxy = 'The Milky Way';
  3. const stars = 'North Star';
  4.  
  5. let callMyNightSky = () => {
  6.   return 'Night Sky: ' + satellite + ', ' + stars + ', and ' + galaxy;
  7. }
  8.  
  9. console.log(callMyNightSky());
Advertisement
Add Comment
Please, Sign In to add comment