Skip to content

Instantly share code, notes, and snippets.

@creyn

creyn/index.js Secret

Created August 25, 2018 14:25
Show Gist options
  • Save creyn/24ce005f860eb1cb529cffd06e64e591 to your computer and use it in GitHub Desktop.
Save creyn/24ce005f860eb1cb529cffd06e64e591 to your computer and use it in GitHub Desktop.
Droga Programisty : Kod : IF ELSEIF w JavaScript
var liczba = 5;
if (liczba == 4) {
console.log('liczba jest rowna 4');
}
else if (liczba == 5) {
console.log('liczba jest rowna 5');
}
else {
console.log('to jakas inna liczba');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment