Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Chapter 8 Programming Assignment For this chapter we are going to make our own basic calculator. Up until now, I have created the event handlers

Chapter 8 Programming Assignment

For this chapter we are going to make our own basic calculator.

Up until now, I have created the event handlers for your templates. For this chapter you will need to create your own event handlers for 4 buttons, as well as write the code for the calculation that each should do.

This also gives us time to make sure we fully understand how events work and how to trigger them, as next chapter we will start to do more with page modifications. It's important that you have a pretty thorough grasp on the basics we have discussed up until this point

Chapter 8.css

body{

margin:0;

background:#333;

}

.main{

width:400px;

height:auto;

background:#fff;

margin:50px auto;

text-align:center;

padding: 25px 0;

}

.main input{

margin:25px 0;

}

Chapter 8.html

Chapter 8 Calculator

Basic Calculator

Enter 2 numbers below and click the desired operator button.









Chapter 8.js

// COURSE: CIT 140 JavaScript

// NAME:

// DATE:

// PROJECT: Chapter 8 Programming Project

function Add(){

}

function Subtract(){

}

function Multiply(){

}

function Divide(){

}

I have included what directions I have along with all the separate files for this program.

I am needing all the code for the Chapter 8.js file.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Relational Database Design With Microcomputer Applications

Authors: Glenn A. Jackson

1st Edition

0137718411, 978-0137718412

More Books

Students also viewed these Databases questions

Question

Explain the characteristics of a good system of control

Answered: 1 week ago

Question

State the importance of control

Answered: 1 week ago

Question

What are the functions of top management?

Answered: 1 week ago

Question

Bring out the limitations of planning.

Answered: 1 week ago