Created
October 22, 2014 10:01
-
-
Save koos/cef097028d14032c810c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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