Skip to content

Instantly share code, notes, and snippets.

@RahmatSaeedi
Created May 10, 2021 14:30
Show Gist options
  • Save RahmatSaeedi/00548ac885bd5d39035f1c685426c46d to your computer and use it in GitHub Desktop.
Save RahmatSaeedi/00548ac885bd5d39035f1c685426c46d to your computer and use it in GitHub Desktop.
CodeSignal - Arcade - Intro - JS - evenDigitsOnly
function evenDigitsOnly(n) {
return n.toString().split("").every((n) => (parseInt(n) % 2 == 0));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment