Skip to content

Instantly share code, notes, and snippets.

@thejhh
Created February 7, 2014 19:09
Show Gist options
  • Select an option

  • Save thejhh/8869619 to your computer and use it in GitHub Desktop.

Select an option

Save thejhh/8869619 to your computer and use it in GitHub Desktop.
"use strict";
var y = [] + {};
console.log( typeof y );
var x = {} + [];
console.log( typeof x );
// $ node foo.js
// string
// string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment