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 AJAX Basics (retiring) AJAX and APIs Make a JSONP request

Lachlan Tetlow-Stuart
PLUS
Lachlan Tetlow-Stuart
Courses Plus Student 10,245 Points

Frustrating that old courses don't accept ES2015 syntax.

Trying to get into practice after learning about ES2015 syntax, frustrating that courses aren't updated to assist students with this.

weather.js
$(document).ready(function() {
  const weatherAPI;
});
index.html
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>What's the Weather Like?</title>
  <script src="jquery.js"></script>
  <script src="weather.js"></script>
</head>
<body>
  <div id="main">
    <h1>Current temperature: <span id="temperature"></span>&deg;</h1>
  </div>
</body>
</html>

1 Answer

Hello

if you click the Questions tab in the video, you will see that some questions go back to 2014. This course is an older recording and to be honest, from the AJAX prospective today's Ajax is not much different from 2014 Ajax. I generally use webstorm to follow on with the curse content. In webStorm I use whatever I see fit, but when answering challenge questions I do whatever get me through the challenge.

just my 0.02