Learn Form Validation by Building a Calorie Counter - Step 18

Tell us what’s happening:

step 18 : Start by declaring a cleanInputString function that takes a str parameter.

what i did : function cleanInputString(str)

error i am getting : You should declare a cleanInputString function.

what am i doing wrong here?

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

function cleanInputString(str)

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36

Challenge Information:

Learn Form Validation by Building a Calorie Counter - Step 18

Hi there and welcome to our community!

Your function declaration should include a pair of curly brackets.

thank you , i totally forgot that.
It worked .

1 Like