We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c723da2 commit 439d5e1Copy full SHA for 439d5e1
index.js
@@ -0,0 +1,37 @@
1
+function add(a, b) {
2
+ var number = a+= b
3
+ return number
4
+}
5
+
6
+function subtract(a, b) {
7
+ var number = a -= b
8
9
10
11
+function multiply(a, b) {
12
+ var number = a *= b
13
14
15
16
+function divide(a, b) {
17
+ var number = a /= b
18
19
20
21
+function increment(n) {
22
+ n++
23
+ return n
24
25
26
+function decrement(n) {
27
+ n--
28
29
30
31
+function makeInt(n) {
32
+ return parseInt(n, 10)
33
34
35
+function preserveDecimal(n) {
36
+ return parseFloat(n)
37
0 commit comments