Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Vadim_Moshev.js #10

Closed
wants to merge 1 commit into from
Closed

Conversation

Vadim-Moshev
Copy link

Here is my solution for your Argument Trouble task

@evilj0e
Copy link
Owner

evilj0e commented Oct 28, 2019

Issue #8

@@ -0,0 +1,7 @@
// Solution by Vadim Moshev special for Anton Code It channel
function sum(...args) {
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

На мой взгляд, в данной задаче нет смысла смешивать объявление функций с помощью function и стрелочных функции. Если выбрать какой-то один вариант можно сделать код немного чище.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

По условию задачи в функцию всегда приходит не больше двух аргументов. Кажется, нет смысла собирать их в args, а можно просто объявить, например, как x и y и дальше работать с ними. Так мы всегда будем знать какие и сколько аргументов нам приходит.

@@ -0,0 +1,7 @@
// Solution by Vadim Moshev special for Anton Code It channel
function sum(...args) {
return ((args[1] !== undefined)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Скобки вокруг всего выражения лишние. Их можно убрать и ничего такого не произойдёт.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Можно инвертировать условие, а ветки поменять местами. Иногда их проще читать.

@evilj0e evilj0e closed this Nov 29, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants