Skip to content

Instantly share code, notes, and snippets.

@andregardi
Created April 17, 2025 14:45
Show Gist options
  • Save andregardi/3c526d89c4983283e45f89f85a84e10a to your computer and use it in GitHub Desktop.
Save andregardi/3c526d89c4983283e45f89f85a84e10a to your computer and use it in GitHub Desktop.
export function myFunction (num) {
if (num % 15 === 0) return 'pineapple';
if (num % 3 === 0) return 'pine';
if (num % 5 === 0) return 'apple';
return num;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment