Skip to content

Instantly share code, notes, and snippets.

@ksol
Created September 29, 2015 16:10
Show Gist options
  • Select an option

  • Save ksol/3e1a282a5043ee914b18 to your computer and use it in GitHub Desktop.

Select an option

Save ksol/3e1a282a5043ee914b18 to your computer and use it in GitHub Desktop.
// This
export default Component.extend({
value: 1
})
// Is pretty much the same as
var x = 1;
export default Component.extend({
value: x
})
// For integers, it will probably never be a problem. BUT for objects, we end with...
var x = [];
export default Component.extend({
value: x
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment