We'll learn how to get the value of a Node in a Linked List at a given Index.
[00:00] Now, let's define the get method. The get method takes a single argument, index. It'll return us the value of the node at that index if one exists. This will start to look pretty familiar. Once again, we're going to iterate through each of the nodes until we find the one we're looking for. [00:40] Now that we have the current node, we simply return its value. Again, let's go check our tests. Similar story as before, create a new linked list, we insert 3 elements and then we're going to try and get the value of a particular index. [01:02] If we scroll up, we can see we now have 4 passing tests. 2 more to go.
Member comments are a way for members to communicate, interact, and ask questions about a lesson.
The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io
Be on-Topic
Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.
Avoid meta-discussion
Code Problems?
Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context
Details and Context
Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!