From ac111a5595441e10119f325f5b3c972ed05c3c78 Mon Sep 17 00:00:00 2001 From: alexmenshikov Date: Wed, 10 Jul 2024 21:51:57 +0700 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=B2=D1=8B=D1=87=D0=B8=D1=81=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20?= =?UTF-8?q?=D1=81=D1=83=D0=BC=D0=BC=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 00-intro/10-sum/sum.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/00-intro/10-sum/sum.js b/00-intro/10-sum/sum.js index 03c9923..2be112a 100644 --- a/00-intro/10-sum/sum.js +++ b/00-intro/10-sum/sum.js @@ -6,5 +6,5 @@ * @return {number} сумма чисел a и b */ export function sum(a, b) { - // Решение + return a + b; }