Giter VIP home page Giter VIP logo

variable_assignment's Introduction

Variable Exercises

Problem One

Age Calculator:

  • Store your birth year in a variable.
  • Store a future year in a variable.
  • Calculate your 2 possible ages for that year based on the stored values.
  • For example, if you were born in 1988, then in 2026 you'll be either 37 or 38, depending on what month it is in 2026.
  • Log them to the screen like so: "I will be either ageMin or ageMax in futureYear", substituting the values.

Problem Two

Snack Supply Calculator:

  • Store your current age in a variable.
  • Store a maximum age in a variable.
  • Store an estimated snack amount per day (as a number).
  • Calculate how many snacks you would eat total, from your current age until the maximum age.
  • Log the result to the screen like this: "You will need snackNumber to last you until the age of maxAge".

Problem Three

Calculate properties of a circle, using the definitions here.

  • Store a radius into a variable.
  • Calculate the circumference based on the radius, and log "The circumference is circumferenceResult".
  • Calculate the area based on the radius, and log "The area is areaOfCircle".
  • Hint: https://www.w3schools.com/jsref/jsref_pi.asp

Problem Four

Temperature Converter:

  • Store a celsius temperature into a variable.
  • Convert it to fahrenheit and output "tempInCelcius°C is tempInFahrenheit°F".
  • Now store a fahrenheit temperature into a variable.
  • Convert it to celsius and output "tempInFahrenheit°F is tempInCelcius°C."

Problem Five

Grades Calculator:

  • Store Alices's grade on a test to a variable
  • Store Bob's grade on a test to a variable
  • Store Cam's grade on a test to a variable
  • Find the average grade of all students
  • Store Dee's grade on a test to a variable
  • Find the average grade of all students
  • Print out if Dee's grade is higher than the class average

Problem Six: Predict the output

For this section write what you think will be logged as a comment next to console.log like so: console.log('Cat') //'Cat' before running the code. Then execute your file and compare with your prediction.

a. js let num1 = 2 let num2 = 5 let num3 = num1 * num2 console.log(num3)

b. js let str = 'jel' str += 'lo' console.log(str)

c. js let string = 'My favorite number is '; let number = 42 let sentence = string + number console.log(typeof(sentence))

variable_assignment's People

Contributors

alejo4373 avatar benstone1 avatar coreyladovsky avatar eriksoncastro avatar xpectro93 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.