JavaScript

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

1/3

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

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;).