-
Notifications
You must be signed in to change notification settings - Fork 11
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
Второе ДЗ #18
base: master
Are you sure you want to change the base?
Второе ДЗ #18
Conversation
*@param {Number} house Номер дома, в котором пройдёт событие, если не является типом number, инициализация объекта coordinate не произойдёт. | ||
*/ | ||
createEvent : function (start, end, link, city, street, house) { | ||
if (((typeof start === "number") && (start / 20000000 > 0)) && ((typeof end === "number") && (end / 20000000 > 0) && (end > start))) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Это не читается. Много лишних скобочек и длинная строка.
if (typeof start === "number" &&
start / 20000000 > 0) {
// your stuff
}
Код очень-очень разряжен коментами и поэтому дольше воспринимается. Фразы описывающие переменную слишком длинные "Переменная типа string, хранящая название города, в котором будет проходить событие." /**
* @name CoordinateStruct
*
* @field {String} city Город события
*/
...
/**
* @type {CoordinateStruct}
*/
coordinate : {
}
... |
This reverts commit abcfbe0.
Так верно? А то я запутался видимо. |
Да. Вот так правильно. Я специально делаю, чтобы от каждого было по 1-му пулреквесту на домашку, а то потом можно запутаться. |
if (typeof start === "number" && start / 20000000 > 0 && end > start) { | ||
this.startTime = start; | ||
this.endTime = end; | ||
(typeof link === "string") && (this.link = link); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Нууу
Проблема именно с форматом документации? Пропущена строка между заголовком и описанием передаваемых параметров, и тому подобное? Или вся документация написана не верно? |
Документация оформлена правильно относительно содержимого, но форматирование ее не совсем корректное. |
No description provided.