-
Notifications
You must be signed in to change notification settings - Fork 37
double list with classes #9
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
base: master
Are you sure you want to change the base?
double list with classes #9
Conversation
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.
Прогони код через линтер eslint, его конфиги присылал всем
@@ -15,7 +15,7 @@ rules: | |||
MemberExpression: 1 | |||
linebreak-style: | |||
- error | |||
- unix | |||
- windows |
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.
const nodeArray = []; | ||
if (this.length > 0) { | ||
let node = this.first; | ||
if (node.data.name === name) |
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.
Добавь {}
nodeArray.push(node); | ||
while (node !== this.last) { | ||
node = node.next; | ||
if (node.data.name === name) |
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.
Только однострочные без скобок
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.
Submit this example as separate file to have both prototype and classes examples
No description provided.