This file contains 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
// Generated by CoffeeScript 1.6.3 | |
/* | |
* http://usejsdoc.org/ | |
*/ | |
(function() { | |
var a, b, x, y; | |
a = 21; |
This file contains 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
a=21 | |
b="21" | |
result = 21=='21' | |
console.log result |
This file contains 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
a = true | |
b = false | |
console.log "The result of (a && b) is " | |
result = a && b | |
console.log result | |
console.log "The result of (a || b) is " | |
result = a || b | |
console.log result |
This file contains 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
// Generated by CoffeeScript 2.4.1 | |
(function() { | |
var age, name; | |
name = "CanCan CanKardes"; | |
age = 58; | |
}).call(this); |
This file contains 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
name = "Zeki" | |
console.log "Merhaba"+name+" Demo calismalarima hos geldiniz." |