Skip to content

Instantly share code, notes, and snippets.

@Zhami
Created May 12, 2011 17:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Zhami/969076 to your computer and use it in GitHub Desktop.
Save Zhami/969076 to your computer and use it in GitHub Desktop.
JSLint example generates warning about line 11
(function () {
"use strict";
var processTheForm;
processTheForm = function () {
var resultObjHash,
// functions
createElemHandler, createResultObj;
createElemHandler = function () {
};
createResultObj = function () {
};
resultObjHash = {};
};
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment