7/13 checker wasn't ending

<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>

https://www.codecademy.com/courses/react-101/lessons/this-props/exercises/event-handler-component-class?action=resume

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>

The “Run” button wasn’t ending when clicked. As you can see on this board a few other people also had a similar problem in 7/13. Anyway I tried going to Learn ReactJS part 2 then came back to part 1 (so I didn’t miss this.state) and it ended up working.

I strongly suggest that a “skip” button be added in case there are buggy lesson checkers like in 7/13.

```

var React = require(‘react’);
var ReactDOM = require(‘react-dom’);
var Button = require(’./Button’);

var Talker = React.createClass({
talk: function () {
for (var speech = ‘’, i = 0; i < 10000; i++) {
speech += 'blah ';
}
alert(speech);
},

render: function () {
return ;
}
});

ReactDOM.render(
,
document.getElementById(‘app’)
);

<do not remove the three backticks above>

you can skip by going to the next one, so i suggest learning languages where you get Save and Submit.
you can skip exersizes.
i also agree on the skip button though

The next exercises say they’re “locked”. I can only use the “next” button if I have successfully completed the step now or sometime in the past.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.