JAVASCRIPT

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/4

flashcard set

Earn XP

Description and Tags

JS

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

5 Terms

1
New cards

VAR

A keyword used to declare a variable in JavaScript, allowing for the storage and manipulation of data. Variables declared with var are function-scoped or globally scoped.

2
New cards

LET

A block-scoped variable declaration in JavaScript that allows for the creation of variables limited to the scope of a block statement, improving maintainability and preventing variable hoisting issues.

3
New cards

CONST

A block-scoped variable declaration in JavaScript that allows for the creation of constants, preventing reassignment of the variable after its initial assignment.

4
New cards

DEF

Short for "definition," used to describe the meaning or explanation of a term in programming or other contexts, establishing clarity and understanding.

5
New cards