FAQ: jQuery Setup - Review: jQuery Introduction

Community%20FAQs%20on%20Codecademy%20Exercises

This community-built FAQ covers the “Review: jQuery Introduction” exercise from the lesson “jQuery Setup”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Web Development

Introduction to jQuery

FAQs on the exercise Review: jQuery Introduction

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head here.

Looking for motivation to keep learning? Join our wider discussions.

Learn more about how to use this guide.

Found a bug? Report it!

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

In the code that was in the editor the arrow function is as follows:

$navDropdown.on('mouseleave', () => {
    $navDropdown.hide();
  })

However in an earlier JavaScript lesson I learned the curly braces were not always needed in arrow function expressions. Is there a reason why the code is not as follows:

  $navDropdown.on('mouseleave', () =>   $navDropdown.hide())

The curly braces are optional when you are returning one line of code. However, if there are multiple lines you must wrap them in curly braces. For this code we could do with or without the curly braces