Skip to content

Instantly share code, notes, and snippets.

@jiangrongyong
Created November 1, 2012 02:40
Show Gist options
  • Select an option

  • Save jiangrongyong/3991316 to your computer and use it in GitHub Desktop.

Select an option

Save jiangrongyong/3991316 to your computer and use it in GitHub Desktop.
jquery object array-like
var c = {};
c[0] = 'ab';
console.log(c);
c.length = 1;
c.splice = [].splice;
console.log(c);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment