i am new to this forum and to freecodecamp.
I use the challenges to build myself a great portfolio-website and till the drum-machine and the calculator it went really well.
Why the drum-machine isn’t passing the tests, i know (because i used a complete different programming approach) but why my Calculator is not passing all the tests, i have no idea … it will be great, to get some feedback or hints, what i have to change, to pass the tests.
Okay, might be a longshot, but I believe you have “misspelled” your display in your code.
Try removing and retype the text id="display" in your display <div></div>, and test again.
As I see it, all the tests fail because it sees your display as “0” after inputting values according to the tests it makes.
When I searched through the HTML in my browser, I tried to search for id="display", but were unable to make it find your div - despite finding it manually.
Also found a slight issue when I tried out your calculator - If you type in a number that contains a 0 after the decimal point, such as “5.607”, in the display it removes the 0 but in the formula div it still displays correctly.
@LE-Smith, when tests fail click the red button to see which test(s) are failing and text to help you correct the issue.
Be sure and read more than just the first line of the failing message. The ability to read and comprehend error messages is a skill you’ll need to acquire as a developer. Ask questions on what you don’t understand.