JavaScript Overview and Basics

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

1/9

flashcard set

Earn XP

Description and Tags

Flashcards covering key concepts and terminology from the JavaScript tutorial.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

JavaScript

A lightweight, interpreted programming language commonly used for creating network-centric applications and integrated with HTML.

2
New cards

Client-Side JavaScript

JavaScript that runs in the user's browser and can interact with the user, control the browser, and dynamically create HTML content.

3
New cards

Global Variables

Variables that have global scope and can be accessed anywhere in the JavaScript code.

4
New cards

Local Variables

Variables that are only accessible within the function where they are defined.

5
New cards

ECMAScript

A standardized version of JavaScript that defines the core language features and specifications.

6
New cards

Data Types in JavaScript

JavaScript supports primitive data types such as Numbers, Strings, Booleans, and also composite types like Objects.

7
New cards

JavaScript Variable Declaration

Variables in JavaScript are declared using the var keyword, and can be initialized at the time of declaration or later.

8
New cards

JavaScript Reserved Words

Keywords that cannot be used as variable names or function names, such as break, boolean, and if.

9
New cards

Arithmetic Operators

Operators in JavaScript that perform mathematical calculations, including addition (+), subtraction (-), multiplication (*), and division (/).

10
New cards

Comparison Operators

Operators that compare two values and return a boolean result, including equal (==), not equal (!=), greater than (>), and less than (<).