Last active
October 6, 2016 06:33
-
-
Save tantaroth/548c8fef54f7e1b48d588f21b58c9400 to your computer and use it in GitHub Desktop.
Script on Javascript - show info in console
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
function say (msg) { | |
console.log(msg); | |
} |
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
var total = 0; | |
function sum (numbers) { | |
for (var num in numbers) { | |
total += numbers[num]; | |
} | |
return total; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment