Daily Coding Challenge - Vowel Balance

Tell us what’s happening:

it’s very hard to read the instructions, and I tried it and I still don’t get it. what I need is someone to help me step by step.

Your code so far

function isBalanced("Racecar") 
functine isbalanced ("Lorem Ipsum")
function isBalanced ("Kitty Ipsum")
function isBalanced ("String")
function isBalanced (" ")
function isBalanced ("abcdefghigklmnopqrstuvwxyz")
function isBalanced ("123A#b!E&*456-o.U")

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36

Challenge Information:

Daily Coding Challenge - Vowel Balance

https://www.freecodecamp.org/learn/daily-coding-challenge/2025-08-11

so what do I do know

:smile:

so what do I do know

:smile:

Welcome to the forum @ifkirnekaoutar10

Vowel Balance

Given a string, determine whether the number of vowels in the first half of the string is equal to the number of vowels in the second half.

  • The string can contain any characters.

  • The letters a, e, i, o, and u, in either uppercase or lowercase, are considered vowels.

  • If there’s an odd number of characters in the string, ignore the center character.

For this challenge you need to write a function that can check the first and second half of a string, and compare the numbers of vowels in each half.

If both halves contain the same number of vowels, then you have a vowel balance.

Otherwise, there is no balance.

Break a problem into smaller steps, then work on each step.

Happy coding