Skip to content
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

Course Checks on JavaScript Algorithms and Data Structures: Basic Data Structures #36

Open
21 tasks
jonathan-rogers-dev opened this issue Jun 23, 2021 · 0 comments
Labels
good first issue Good for newcomers help wanted Extra attention is needed

Comments

@jonathan-rogers-dev
Copy link
Member

  • Basic Data Structures
    • Use an Array to Store a Collection of Data
    • Access an Array's Contents Using Bracket Notation
    • Add Items to an Array with push() and unshift()
    • Remove Items from an Array with pop() and shift()
    • Remove Items Using splice()
    • Add Items Using splice()
    • Copy Array Items Using slice()
    • Copy an Array with the Spread Operator
    • Combine Arrays with the Spread Operator
    • Check For The Presence of an Element With indexOf()
    • Iterate Through All an Array's Items Using For Loops
    • Create complex multi-dimensional arrays
    • Add Key-Value Pairs to JavaScript Objects
    • Modify an Object Nested Within an Object
    • Access Property Names with Bracket Notation
    • Use the delete Keyword to Remove Object Properties
    • Check if an Object has a Property
    • Iterate Through the Keys of an Object with a for...in Statement
    • Generate an Array of All Object Keys with Object.keys()
    • Modify an Array Stored in an Object
@jonathan-rogers-dev jonathan-rogers-dev added good first issue Good for newcomers help wanted Extra attention is needed labels Jun 23, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

1 participant