I need help please with javascript

Please I need help with javascript please please please

Could you reframe your problem to be more specific? Generally, learning to program just takes time and repetition, so even if you feel lost and insecure now, just keep practicing and you’ll probably get it soon enough.

Not sure what kind of help you are looking for but there is a Javascript video series on the FCC youtube channel. Have you watched them? https://www.youtube.com/playlist?list=PLWKjhJtqVAbk2qRZtWSzCIN38JC_NdhW5

That’s a great suggestion, they teach you a lot of the things you may not of understood in the challenges - such as how jQuery works - not teaching you how to use it but rather how each tiny bit of code works - I have a better understanding of how to use jQuery now.

We’d be more than happy to help you, what is confusing you? Could you be a bit more specific?

I figured it out this was my first time using the forum was using gitter. How ever my question was how to store values with assignment variables.

Here is the basic way of using variables:
var mySuperCoolVariableName; // Define the variable - tells javascript it exists mySuperCoolVariableName = "mysupercoolstring"; // Give the variable a value var myOtherSuperCoolVariableName = "myotersupercoolstring"; // You can even give the variable a value at the time you define it.
You can read about variables in detail at https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/var let us know if you need anything else :slight_smile: