example of scope

PHOTO EMBED

Mon Jun 27 2022 03:43:29 GMT+0000 (Coordinated Universal Time)

Saved by @cruz #javascript

const logVisibleLightWaves = () => {
  let lightWaves = 'Moonlight';
	let region = 'The Arctic';
  // Add if statement here:
  if (region === 'The Arctic'){
    let lightWaves = 'Northern Lights';
    console.log(lightWaves);
  }
  console.log(lightWaves);
};

logVisibleLightWaves();
content_copyCOPY