Files
coffeescript/documentation/js/scope.js
2009-12-21 11:41:45 -05:00

9 lines
162 B
JavaScript

(function(){
var num = 1;
var change_numbers = function() {
num = 2;
var new_num = 3;
return new_num;
};
var new_num = change_numbers();
})();