-
Notifications
You must be signed in to change notification settings - Fork 0
Object Manager
kevin edited this page Nov 28, 2020
·
2 revisions
This Module is a module that helps to make global Objects and properties like databases, OBJM is a constructor module so we can init it once and reuse it.
var Objm = Manager.OBJM("name"),
$scope = Objm.Objs;
$scope.name = "John";
$scope.age = "25";
Objm.set("hello","Hello World Managerjs!");
console.log($scope);You can learn more about this at Object Manager