From 3a51e442f9b2d2850270cea81bd903effbbdbf9c Mon Sep 17 00:00:00 2001 From: Afanaseva Tamara Date: Tue, 11 Oct 2016 17:27:55 +0500 Subject: [PATCH 1/3] =?UTF-8?q?=D0=9C=D0=BE=D1=91=20=D1=80=D0=B5=D1=88?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B7=D0=B0=D0=B4=D0=B0=D1=87=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- math.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/math.js b/math.js index c749300..4c397d6 100644 --- a/math.js +++ b/math.js @@ -3,5 +3,8 @@ exports.isStar = true; exports.sum = function (a, b) { + var c; + c = a + b; + return c; // Реализуйте сложение в этой функции }; From 0b1157a7cf3a999ddaa96899c9256640059440ba Mon Sep 17 00:00:00 2001 From: Afanaseva Tamara Date: Tue, 11 Oct 2016 17:37:01 +0500 Subject: [PATCH 2/3] =?UTF-8?q?=D0=9C=D0=BE=D0=B8=20=D0=B8=D1=81=D0=BF?= =?UTF-8?q?=D1=80=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- math.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/math.js b/math.js index 4c397d6..72d3602 100644 --- a/math.js +++ b/math.js @@ -3,8 +3,6 @@ exports.isStar = true; exports.sum = function (a, b) { - var c; - c = a + b; - return c; // Реализуйте сложение в этой функции + return a+b; }; From 6d71328b32e52b0de73c5145cebfd0a969862009 Mon Sep 17 00:00:00 2001 From: Afanaseva Tamara Date: Tue, 11 Oct 2016 17:41:45 +0500 Subject: [PATCH 3/3] =?UTF-8?q?=D0=9C=D0=BE=D0=B8=20=D0=B8=D1=81=D0=BF?= =?UTF-8?q?=D1=80=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- math.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math.js b/math.js index 72d3602..d1904c2 100644 --- a/math.js +++ b/math.js @@ -4,5 +4,5 @@ exports.isStar = true; exports.sum = function (a, b) { // Реализуйте сложение в этой функции - return a+b; + return a + b; };