(word)
| 62 | //animal2.length === 5 |
| 63 | |
| 64 | function iterateThroughWord(word) { |
| 65 | for (let i = 0; i < word.length; i++) { |
| 66 | let letter = word[i]; |
| 67 | console.log("index", i, "value", letter); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | // iterateThroughWord('cats'); |
| 72 | // iterateThroughWord('rhino'); |
nothing calls this directly
no outgoing calls
no test coverage detected