UNPKG
supermegakalkulator
Version:
latest (1.0.0)
1.0.0
ez kalkulator, s katerim spoznavamo module v Node.js
supermegakalkulator
/
.vscode
/
index.js
10 lines
•
140 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
function add(
x
,
y
) {
return
x
+
y
; } function
sub
(
x
,
y
)
{
return
x
-
y
; } module.exports.add = add; module.exports.sub =
sub
;