Added missing 'var' on variable declaration. (#35675)

pull/35693/head
Avahe Kellenberger 2019-03-26 23:07:58 -07:00 committed by The Coding Aviator
parent d9213b38cd
commit cde8516688
6 changed files with 36 additions and 43 deletions

View File

@ -64,7 +64,6 @@ function LinkedList() {
currentNode.next = node;
}
length++;
};
@ -73,7 +72,6 @@ function LinkedList() {
// Only change code above this line
}
```
</div>

View File

@ -65,7 +65,6 @@ function LinkedList() {
currentNode.next = node;
}
length++;
};

View File

@ -72,7 +72,6 @@ function LinkedList() {
currentNode.next = node;
}
length++;
};

View File

@ -65,7 +65,6 @@ function LinkedList() {
currentNode.next = node;
}
length++;
};

View File

@ -65,7 +65,6 @@ function LinkedList() {
currentNode.next = node;
}
length++;
};

View File

@ -65,7 +65,6 @@ function LinkedList() {
currentNode.next = node;
}
length++;
};