Skip to content

Object Manager

kevin edited this page Nov 28, 2020 · 2 revisions

Manager.OBJM

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

Clone this wiki locally