fix(curriculum): changed typo "h2" to "output" (#55022)

Co-authored-by: Lasse Jørgensen <28780271+lasjorg@users.noreply.github.com>
This commit is contained in:
André Barreira Dinis
2024-05-30 17:47:27 +01:00
committed by GitHub
parent 4506776626
commit 41a1bf1334

View File

@@ -11,7 +11,7 @@ In this project, you'll build a decimal and binary converter and learn about bot
All of the HTML and CSS for this project has been provided for you.
When you're ready to get started, use the `.getElementById()` method to get the input element with the id `number-input`, and store it in a variable called `numberInput`. Use the same method to get the button element with the id `convert-btn` and store it in a variable called `convertBtn`, and the `h2` element with the id `result` and store it in a variable called `result`.
When you're ready to get started, use the `.getElementById()` method to get the `input` element with the id `number-input`, and store it in a variable called `numberInput`. Use the same method to get the `button` element with the id `convert-btn` and store it in a variable called `convertBtn`, and the `output` element with the id `result` and store it in a variable called `result`.
**NOTE**: This project will only convert positive numbers into binary.