JavaScript 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

These flashcards cover the fundamental concepts and definitions within JavaScript basics as taught in the lecture.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

JavaScript

A lightweight, interpreted programming language designed for creating network-centric applications.

2
New cards

Client-Side JavaScript

The most common form of JavaScript that is included in HTML documents to enable interaction with users.

3
New cards

Advantages of JavaScript

Includes less server interaction, immediate feedback to visitors, increased interactivity, and richer interfaces.

4
New cards

JavaScript Limitations

Does not allow reading/writing of files, cannot be used for networking applications and lacks multithreading.

5
New cards

ECMAScript Specification

A standardized version of JavaScript defined in the ECMA-262 document.

6
New cards

Variables in JavaScript

Named containers for storing data, declared using the 'var' keyword.

7
New cards

JavaScript Data Types

Includes Numbers, Strings, Booleans, null, and undefined, as well as objects as composite types.

8
New cards

Operators in JavaScript

Tools for performing operations on variables and values, including Arithmetic, Comparison, Logical, and Assignment operators.

9
New cards

Conditional Operator

A ternary operator that evaluates a condition and returns one of two values depending on whether the condition is true or false.

10
New cards

typeof Operator

A unary operator that returns a string indicating the type of the unevaluated operand.