Files
freeCodeCamp's Camper Bot 64697d4ca7 chore(i18n,learn): processed translations (#54988)
Co-authored-by: Naomi <commits@nhcarrigan.com>
2024-05-28 16:57:56 +09:00

65 lines
1.1 KiB
Markdown

---
id: 62a3a7e4f1060e2fc5ffb34b
title: Step 8
challengeType: 0
dashedName: step-8
---
# --description--
Create another variable called `currentWeaponIndex` and set it to `0`.
# --hints--
You should use `let` to declare a variable called `currentWeaponIndex`.
```js
assert.match(code, /let\s+currentWeaponIndex/i);
```
Du solltest camelCase verwenden, um deine Variable zu benennen.
```js
assert.match(code, /currentWeaponIndex/);
```
Your `currentWeaponIndex` variable should be set to `0`.
```js
assert.equal(currentWeaponIndex, 0);
```
Du solltest deine Variable auf `0` initialisieren.
```js
assert.match(code, /let\s+currentWeaponIndex\s*=\s*0/);
```
# --seed--
## --seed-contents--
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="./styles.css">
<title>RPG - Dragon Repeller</title>
<script src="./script.js"></script>
</head>
<body>
<div id="game">
</div>
</body>
</html>
```
```js
--fcc-editable-region--
let xp = 0;
let health = 100;
let gold = 50;
--fcc-editable-region--
```