Unit 6: Lists, Loops, and Traversals

0.0(0)
studied byStudied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/13

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 2:49 AM on 12/12/25
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

14 Terms

1
New cards

Append

Add elements to the end of a list.

2
New cards

Array

A data structure in JavaScript used to represent a list.

3
New cards

Data Abstraction

Manage complexity in programs by giving a collection of data a name without referencing the specific details of the representation.

4
New cards

Element

Individual value in a list that is assigned a unique index.

5
New cards

Index

Common method for referencing the elements in a list or string using natural numbers.

6
New cards

List

Ordered sequence of elements.

7
New cards

Substring

Part of an existing string.

8
New cards

Infinite Loop

Occurs when the ending condition will never evaluate to true.

9
New cards

Iteration

Repeating portion of an algorithm. Repeats a specified number of times or until a given condition is met.

10
New cards

Loops

Iterative statements that change the sequential flow of control by repeating a set of statements until a stopping condition is met.

11
New cards

While loop

A programming construct used to repeat a set of commands as long as a boolean condition is true.

12
New cards

For loop

Loops that have a predetermined beginning, end, and increment.

13
New cards

Simulation

Abstractions of more complex objects or phenomena for a specific purpose.

14
New cards

Traversal

The process of accessing each item in a list one at a time.