Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/daviddprtma/learning-javascript-intermediate-switch-statements

For this web application, we will calculate number statistics given a range of numbers keyed in by the user. The application will consist of an input and a button element. Thanks to netlify hosting for make the website under 30 seconds and what a blast hosting
https://github.com/daviddprtma/learning-javascript-intermediate-switch-statements

css3 html5 javascript vanilla-js

Last synced: about 11 hours ago
JSON representation

For this web application, we will calculate number statistics given a range of numbers keyed in by the user. The application will consist of an input and a button element. Thanks to netlify hosting for make the website under 30 seconds and what a blast hosting

Awesome Lists containing this project

README

        

# learning-javascript-intermediate-switch-statements

we will build a web application that will allow us to understand what Switch Statements are and when we should use them. For this web application, we will calculate number statistics given a range of numbers keyed in by the user. The application will consist of an input and a button element. We will be writing external CSS and JavaScript for this project.

The web application will take in a list of numbers that the user will enter. These numbers can be placed in any order separated by a comma. Once the user has entered their numbers, users can use the input to choose the type of statistics they would like to calculate from the list of numbers they have entered. From there, we can use the Switch Statement to determine which formula we would want to apply to the list of numbers provided to us.

![funwithnumbers](https://github.com/daviddprtma/learning-javascript-intermediate-switch-statements/assets/76859181/570cfc26-a36e-425f-80ad-65309c15df39)

We will not be using any framework for this project, but instead, we will be using VanillaJS to interact with the Document Object Model using the document keyword.