UNPKG
alisherrr-simple-math
Version:
latest (1.0.0)
1.0.0
math qoshish ayirish bulish kopaytirish
alisherrr-simple-math
/
index.js
12 lines
•
280 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
module
.
exports
.qoshish = function
qoshish
(a,b)
{
return
a+b; }
module
.
exports
.ayirish = function
ayirish
(a,b)
{
return
a-b; }
module
.
exports
.bulish = function
bulish
(a,b)
{
return
a/b; }
module
.
exports
.kopaytirish = function
kopaytirish
(a,b)
{
return
a*b; }