Welcome to your First Exercise!
For this exercise we will be creating a weight metric converter
We will take in a number in pounds (lbs) and convert it to kilograms (kg).
Right now we only know enough to to this one way, but later on we wil learn
how to add logic to this sort of problem!
To complete this exercise do the following:
- Link this HTML file (JS_First_Exercise.html) to you own .js file
- Use Javascript to accept a number input in pounds (lbs)
- Then in your js file convert this number to kilograms (* 0.454)
- Afterwards report back in an alert what the weight is in kg
- Then log/write "Conversion Completed" to the console