Skip to content

Instantly share code, notes, and snippets.

@nk4dev
Created March 25, 2024 07:13
Show Gist options
  • Save nk4dev/3536a4b85c8f1e0aa410313f376888ef to your computer and use it in GitHub Desktop.
Save nk4dev/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)
@nk4dev
Copy link
Author

nk4dev commented Mar 25, 2024

change to public

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