Skip to content

Instantly share code, notes, and snippets.

@code-reaper08
Last active July 27, 2021 18:41
Show Gist options
  • Save code-reaper08/48ab5b124bc1bb714d08ebc460795363 to your computer and use it in GitHub Desktop.
Save code-reaper08/48ab5b124bc1bb714d08ebc460795363 to your computer and use it in GitHub Desktop.
Logger function
function Logger(samparr, n) {
for (i = 0; i < n; i++) {
console.log(samparr[i]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment