I want to create an application in Meteor, from what I understand the manual it first loads which are in subdirectories, and then follows the alphabetical order. My file structu
Define the function with makeBoard = function() { ... }.
makeBoard = function() { ... }
Functions defined with function foo() { ... } are local to the file, as are variables defined with var bar = ....
function foo() { ... }
var bar = ...