Hi all!
I’m trying to solve the Q2 of the JavaScript Practice and I have gotten this far. Below is my code for subLength function.
Question;
" Write a function subLength()
that takes 2 parameters, a string and a single character. The function should search the string for the two occurrences of the character and return the length between them including the 2 characters. If there are less than 2 or more than 2 occurrences of the character the function should return 0."
Somehow, when I run this code, for the word “digitize” and “cheesecake” it doesn’t return “0” and instead, it returns nothing.
Could anyone help?
Thanks!!
Saki
// Write function below
const subLength = (word, letter) => {
let lowerCaseWord = word.toLowerCase();
let counter = 0
for (let x of word) {
if ( x === letter) {
counter += 1
}
};
if (counter === 2) {
let slicedWord = word.split(letter)
console.log(slicedWord[1].length + 2)
} else {
return 0
}
}
subLength(‘Saturday’, ‘a’); // returns 6
subLength(‘summer’, ‘m’); // returns 2
subLength(‘digitize’, ‘i’); // returns 0
subLength(‘cheesecake’, ‘k’); // returns 0
subLength(‘funny’, ‘n’) // returns 2