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 JavaScript Foundations Variables Hoisting

Help on variable code challenge

Hello I am very new and I am struggling to understand why I cant pass this code challenge. Its asking me to use best practice for variables, I cant seem to understand what to do with the status variable within the if block. Can anyone point me in the right direction?

    function elevatorCloseButton(pushed) {
    var status = "I'll close when I'm ready.";
        if (pushed) {
            status
        }

    }

    elevatorCloseButton(true);

    </script>

I figured it out! Incase anyone looks at this and wonders.... I needed to declare the var status above the if block only without any initialisation. I then add the status = "I'll close when I'm ready." within the if block. Phew!