Get the Value of a Linked List Node by Index

Paul McBride
InstructorPaul McBride
Share this video with your friends

Social Share Links

Send Tweet
Published 5 months ago
Updated a month ago

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.

egghead
egghead
~ a minute ago

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

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

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!

Markdown supported.
Become a member to join the discussionEnroll Today