Day 1 Flashcards
Data type that is unique and cannot be changed. Not important to learn right now
Symbol
Press this key on your keyboard to execute the code in the Console tab.
Enter
Value is primitive, only if it’s not an _______.
Object
A data type which is a sequence of characters.
String
Large integers than the Number type can hold.
BigInt
This means that the language is a lot easier to write and to learn because it abstracts almost everything.
High-level
We use comments in JS too! To write a single line comment type ________.
//
A data type which is a Logical type: true or false.
Boolean
You need to use ________ (single or double) when creating a string!
Quotes
JS is a _________, __________, and multi-__________ programming language.
JS is a high-level, object-oriented, multi-paradigm programming language.
This means that we can use various programing styles such as imperative and declarative.
Multi-paradigm
What code to use when you want to alert or pop up a string ‘Hello World’ in the browser?
alert(”Hello World!”)
Use all _________ letters when naming a variable that is constant.
Uppercase
We used an HTML _________ tag inside of the head tag and we put some line of JS code there.
script
The most fundamental unit of info in programming.
Value