Skip to content

Instantly share code, notes, and snippets.

@nknighta
Created March 25, 2024 07:13
Show Gist options
  • Save nknighta/3536a4b85c8f1e0aa410313f376888ef to your computer and use it in GitHub Desktop.
Save nknighta/3536a4b85c8f1e0aa410313f376888ef to your computer and use it in GitHub Desktop.
const anExampleVariable:number [] = [1,2,3,4,5,6,7];
const anExampleVariable2:number [] = [];
anExampleVariable.map(item => {
anExampleVariable2.push(item * 2)
})
console.log(...anExampleVariable2)
@nknighta
Copy link
Author

change to public

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment