JavaScript

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

1/3

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 5:41 AM on 8/3/25
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

4 Terms

1
New cards

What is JavaScript?

A high-level, interpreted scripting language primarily used for making web pages interactive.

2
New cards

What is a variable in JavaScript?

A container for storing data values. In JavaScript, you can declare them using var, let, or const.

<p>A container for storing data values. In JavaScript, you can declare them using <code>var</code>, <code>let</code>, or <code>const</code>.</p>
3
New cards

What is a function in JavaScript?

A block of code designed to perform a particular task. It is executed when "something" invokes it (calls it).

4
New cards

How do you declare a variable in JavaScript?

Variables can be declared using var, let, or const keywords, followed by the variable name and an optional assignment of a value (e.g., let x = 10;).