dirceu-jr / script.js

script.js boilerplate

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Basic usage:

var App = (function() {

  function private() {
    console.log("=:)");
  }

  function init() {
    private();
  }

  return {
    init: init
  }

})();

App.init();

About

script.js boilerplate

License:MIT License


Languages

Language:JavaScript 100.0%