Skip to content

Instantly share code, notes, and snippets.

@xexi
Created February 6, 2017 05:37
Show Gist options
  • Save xexi/cc6e9faaf40343f0b146e58387113875 to your computer and use it in GitHub Desktop.
Save xexi/cc6e9faaf40343f0b146e58387113875 to your computer and use it in GitHub Desktop.
var n = 5;
var nn = [n];
for (var i = 1; i < 5; i++) {
nn.push(nn[0] - i);
}
console.log(JSON.stringify(nn));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment