/*
Number Eight: Write addition, subtraction, multiplication, and division operations that each result in the number 8. Be sure to enclose your operations in print statements to see the results.
*/

const addition: number = 4 + 4;
const subtraction: number = 10 - 4;
const multiplication: number = 2 * 4;
const division: number = 32 / 4;

console.log(addition,subtraction,multiplication,division);

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: