Skip to content

Instantly share code, notes, and snippets.

@Uzwername
Created March 21, 2021 02:18
Show Gist options
  • Save Uzwername/0e06f4d1228405ed64f5af0c3040fd88 to your computer and use it in GitHub Desktop.
Save Uzwername/0e06f4d1228405ed64f5af0c3040fd88 to your computer and use it in GitHub Desktop.
const mirrorNumbersUpTo = (num) => {
console.log(num);
if (num > 0) {
mirrorNumbersUpTo(num - 1);
console.log(num);
}
};
mirrorNumbersUpTo(5); // ➡️ logs 5, 4, 3, 2, 1, 0, 1, 2, 3, 4, 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment