Skip to content

Instantly share code, notes, and snippets.

@creyn

creyn/index.js Secret

Created August 25, 2018 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save creyn/bfd4692af45ca988654efa86a03636db to your computer and use it in GitHub Desktop.
Save creyn/bfd4692af45ca988654efa86a03636db to your computer and use it in GitHub Desktop.
Droga Programisty : Kod : IF ELSE w JavaScript
var liczba = 5;
if (liczba == 4) {
console.log('liczba jest rowna 4');
}
else {
console.log('to nie jest 4');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment