Learn Basic JavaScript by Building a Role Playing Game - Step 85

What am I doing wrong here?

# Step 85

The value of the currentWeapon variable corresponds to an index in the weapons array. The player starts with a stick, since currentWeapon starts at 0 and weapons[0] is the stick weapon.Preformatted text

In the buyWeapon function, use compound assignment to add 1 to currentWeapon - the user is buying the next weapon in the weapons array.
Preformatted text

Your code so far

function buyWeapon() {
  if (gold >= 30) {
    gold -= 30;
  }
  currentWeapon[1];
}

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36

Challenge Information:

Learn Basic JavaScript by Building a Role Playing Game - Step 85

Hello. In this challenge, you are to use compound assignment to add 1 to the value of currentWeapon.

And if you don’t value what compound assignment is it’s basically this:

let myValue = 3;
myValue += 1; 

which is another way of saying

let myValue = 3;
myValue = myValue + 1;

This part isn’t so important but it can also be expressed as the following your incremental assigment:

let myValue = 3;
myValue++;

More on compound assignment.

Happy learning. :slight_smile:

2 Likes

The right code would be this:

Mod edit: removed solution

@ct9dw2h2c9

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

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