Skip to content

Instantly share code, notes, and snippets.

@edwardbeckett
Created September 9, 2014 22:22
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 edwardbeckett/1e4e911216e0cdf60275 to your computer and use it in GitHub Desktop.
Save edwardbeckett/1e4e911216e0cdf60275 to your computer and use it in GitHub Desktop.
a = [0];
b = [0];
a[1] = a.length;
b[2] = b.length;
console.log( ( a[1] === b[2] ) ? "yep" : "nope");
console.log("a length is : " + (a.length), "b length is : " + (b.length));
console.log(a[1], b[2]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment