Skip to content

Instantly share code, notes, and snippets.

@du5rte
Created April 30, 2017 13:23
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 du5rte/db33f087f740ac6d4ebb746b0ef5e902 to your computer and use it in GitHub Desktop.
Save du5rte/db33f087f740ac6d4ebb746b0ef5e902 to your computer and use it in GitHub Desktop.
let x = 0
console.log(x)
let y = 1
console.log(y)
let z = 0
for (let i=0; i < 20; i++) {
z = x + y
console.log(z)
x = y
y = z
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment