2023-12-30 14:11:09 +00:00
|
|
|
/**
|
|
|
|
* Lets do some math!
|
|
|
|
* Some rules first:
|
|
|
|
* - Replace the strings to the right of the = with the math expression they describe.
|
|
|
|
* - Do not manually enter the answers to the equations. For example, `const a = 9` would be incorrect as 9 is the answer to the equation you're being asked to write out
|
|
|
|
*/
|
|
|
|
|
2023-12-30 14:17:07 +00:00
|
|
|
const a = 1 + 8
|
|
|
|
const b = 22 * 3
|
|
|
|
const c = 5 % 4
|
|
|
|
const d = a - 17
|
|
|
|
const e = a + b + c + d
|
2023-12-30 14:11:09 +00:00
|
|
|
|
|
|
|
module.exports = {a, b, c, d, e}
|