Created a module:
var module= (function () { //мой объект. var object = []; return { //функции... } })(); Why can't I access this object in another file? I module.object so: module.object but writes that not known variable. How to be? Can you tell me something.
objectnot a public property - and therefore not visible from the outside. - Pavel Mayorov pm