Skip to content

jlump9/CSCI215_Lab_03

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lab 03 - Intro to Javascript

Name: Joshua Lumpkin

DUE: 23 Sep 2018 @ 11:59 pm

Instructions:

Compute the Body Surface Area (BSA), Ideal Body Weight (Male or Female), and Body Mass Index (BMI) values using the JavaScript programming language.

When finished, commit and push to Github.

To check the correctness of your calculations, you may use this website: http://www.medcalc.com/body.html

Have fun, and good luck!

Hints

  • Calculate Square Root

    • Syntax: Math.sqrt( x )
    • Description: returns the square root of x
  • Calculate Power

    • Syntax: Math.pow( x, y )
    • Description: returns the value of x raised to the power of y
  • Multiplication

    • Syntax: a * b
    • Description: returns a times b
  • Division

    • Syntax: a / b
    • Description: returns a divided by b
  • Addition

    • Syntax: a + b
    • Description: returns a plus b
  • Subtraction

    • Syntax: a – b
    • Description: returns a minus b

Score __/50

About

Intro to Javascript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 54.7%
  • HTML 24.5%
  • CSS 20.8%