Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width">
    <title>JS Bin</title>
  </head>
  <body>
  </body>
</html>
 
// declare a function getArea() that accepts two parameters
// width and height
function getArea(width, height) {
  return width * height
}
// Calling the getArea() function with values and
// storing the result in a variable called result1
const firstResult = getArea(7, 5)
// print out result1 to the log
console.log(firstResult)
const doorWidth = 2
const doorHeight = 8
// Calling the getArea() function again, but this time
// we are passing variables that respresent the values we
// want to calculate 
const secondResult = getArea(doorWidth, doorHeight)
console.log(secondResult)
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x