Skip to content

Instantly share code, notes, and snippets.

@hattmarris
Created July 30, 2015 22:55
Show Gist options
  • Save hattmarris/6137350f781c4be9d1da to your computer and use it in GitHub Desktop.
Save hattmarris/6137350f781c4be9d1da to your computer and use it in GitHub Desktop.
addCallToArray
var i = 0;
var calls = {};
function addCallToArray(termId) {
var k = 'call-' + i;
calls[k] = termId;
i++;
}
console.log(calls);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment