Skip to content

jpiros/Exercise_8

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Exercise_8

#Recursion (part 2) exercise

##Chirp

run chirp.html
edit js/chirp.js

  • define a function named chirp() that takes a single argument 'n'
  • calling chirp(3) will return the text "chirp chirp chirp"
  • chirp will call itself, each time returning "chirp "

##Letter counter

run letters.html
edit js/letters.js

  • define a function named countLetters() that takes two arguments 'counter' and 'text'
  • calling countLetters(counter, sample_text) will populate the counter object with a count of how many times letters occur
  • countLetters will call itself until all letters are counted

About

Recursion (part 2) exercises

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 95.4%
  • CSS 4.6%