Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Treehouse Club: JavaScript Car Sounds Changing Keywords

Noelle Wayman
Noelle Wayman
1,348 Points

its saying that i have a space inbetween Bike and bell but i dont

its saying this "The function name is case-sensitive. It has to start with lower case, with the second word capitalized (but without a space), exactly like this: 'bikeBell'."

index.html
<!DOCTYPE html>
<html lang="en">

  <head>
  <meta name="charset" value="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=0.5, maximum-scale=0.5, minimal-ui">
    <title>Car Sounds</title>

    <!--Style Sheet link-->
    <link rel="stylesheet" type="text/css" href="css/style.css">
  </head>

  <body>

    <!--Car image -->
    <img src="images/bike.png" class="car" alt="car">


    <!--Button-->
    <a href="javascript:BikeBell();"><img src="images/bikeLock.png" alt="key"></a>


    <!--Audio Files-->
    <audio id="BikeBell" src="sounds/.mp3" preload="auto"></audio>


    <!--Javascript-->
    <script type="text/javascript">
        function startCar() {
            document.getElementById('BikeBell').play();
        }

    </script>

  </body>

</html>

1 Answer

Steven Parker
Steven Parker
243,898 Points

The comment about the space is just a reminder, it's not saying you have one.

The message says "It has to start with lower case, with the second word capitalized (but without a space), exactly like this: 'bikeBell'"

But instead of 'bikeBell' you have 'BikeBell' (starting with a capital B).

Also, in task 1 you should have changed the function itself (on line 20), but here it still shows as startCar.