Skip to content

Instantly share code, notes, and snippets.

@McLarenCollege
Last active April 28, 2022 11:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save McLarenCollege/f589357ee63c842e546b94448bd1a09b to your computer and use it in GitHub Desktop.
Save McLarenCollege/f589357ee63c842e546b94448bd1a09b to your computer and use it in GitHub Desktop.
Print Every Third Element

Given an array write a function to print every third element of the array .

function printEveryThirdElement(arr){
// write your code here
}
printEveryThirdElement([2,4,5,6,6,7,7,10,101,0,1]);// 5 7 101
printEveryThirdElement([2,4,5,6,6,7,7,10,101,0,107,55]);// 5 7 101 55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment