From 981ee1d43a94d740266d3456bfb73ab08c876d41 Mon Sep 17 00:00:00 2001 From: SirMajesty Date: Mon, 15 Oct 2018 16:07:03 +0500 Subject: [PATCH 1/2] test --- math.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math.js b/math.js index c749300..a6b1431 100644 --- a/math.js +++ b/math.js @@ -3,5 +3,5 @@ exports.isStar = true; exports.sum = function (a, b) { - // Реализуйте сложение в этой функции + return Number(a) + Number(b); }; From a0a81cc09558c7ee13c11b2ca6709b16510a2dd7 Mon Sep 17 00:00:00 2001 From: SirMajesty Date: Mon, 15 Oct 2018 16:10:23 +0500 Subject: [PATCH 2/2] test --- math.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math.js b/math.js index a6b1431..ba5716f 100644 --- a/math.js +++ b/math.js @@ -3,5 +3,5 @@ exports.isStar = true; exports.sum = function (a, b) { - return Number(a) + Number(b); + return 42; };