Skip to content

Instantly share code, notes, and snippets.

@koos
Created October 22, 2014 10:01
Show Gist options
  • Save koos/cef097028d14032c810c to your computer and use it in GitHub Desktop.
Save koos/cef097028d14032c810c to your computer and use it in GitHub Desktop.
/*
Hier habe ich ein Beispiel Javascript
*/
var eineNummer = 5;
var einString = "Martin";
if (eineNummer == einString) {
// Dieser Befehl gibt mir was in der Debugger Konsole aus
console.log("das ist gleich");
} else {
console.log("das ist nicht gleich);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment