Completed exercise 03

This commit is contained in:
NetMan 2023-12-30 15:17:07 +01:00
parent 9e9a4b1ff2
commit 6c3c3f2de6
1 changed files with 5 additions and 5 deletions

View File

@ -5,10 +5,10 @@
* - 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 * - 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
*/ */
const a = "one plus eight" const a = 1 + 8
const b = "22 times three" const b = 22 * 3
const c = "the *remainder* of 5/4" const c = 5 % 4
const d = "the variable 'a' minus 17" const d = a - 17
const e = "the sum of the previous four variables" const e = a + b + c + d
module.exports = {a, b, c, d, e} module.exports = {a, b, c, d, e}