Skip to content

Instantly share code, notes, and snippets.

@creyn

creyn/index.js Secret

Last active April 15, 2018 08:36
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/6dc4def39f669957895f786aac1fc7d5 to your computer and use it in GitHub Desktop.
Save creyn/6dc4def39f669957895f786aac1fc7d5 to your computer and use it in GitHub Desktop.
Droga Programisty : Szybkie Palce : funkcja Zanotuj
// Funkcja ktora loguje wiadomosc podczas dzialania gry.
// Wiadomosc jest wyswietlana w konsoli oraz na okienku tekstowym o nazwie 'dziennikZdarzen'.
function Zanotuj(wiadomosc) {
console.log(wiadomosc);
document.getElementById('dziennikZdarzen').value += wiadomosc + '\r\n'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment