Skip to content

Instantly share code, notes, and snippets.

@Chuloo
Created March 26, 2019 23:51
Show Gist options
  • Save Chuloo/1e345a3081841fa75d065bdffef14fab to your computer and use it in GitHub Desktop.
Save Chuloo/1e345a3081841fa75d065bdffef14fab to your computer and use it in GitHub Desktop.
Valar no equals
// Create two variables with words
const word = 'Please';
const greeting = 'Hello';
// Convert the words to lower case
const lowercaseWord = word.toLowerCase();
const lowercaseGreeting = greeting.toLowerCase();
// Compare equality and display result
console.log(lowercaseWord === lowercaseGreeting);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment