Skip to content

Instantly share code, notes, and snippets.

@lethalbrains
Created July 12, 2017 09:43
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 lethalbrains/49efc574365ae9c976b2777d12f3b372 to your computer and use it in GitHub Desktop.
Save lethalbrains/49efc574365ae9c976b2777d12f3b372 to your computer and use it in GitHub Desktop.
let squared = 2,
, cubed = 3
squared **= 2 // same as: squared = squared * squared
cubed **= 3 // same as: cubed = cubed * cubed * cubed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment