Javascript Flashcards
Variable
“name storage” for data. Use ‘let’ to create a variable in Javascript. Variable is right after.
Show 2 variables coping data.
let hello = ‘hello world!’;
let message;
message = hello world;
How many times should a variable be declared ?
Once
Variable Limitations
- Name MUST contain letters, numbers or symbols $ and _
2. First character must not be a digit
Valid Variable Names
- let userName;
- let test123;
- let $;
4 let _;
Does case matter ?
YES!!
apple and AppLE are two different variables.
Reserved names
let class return function
Use strict
Allow you not to use ‘let’, as long as you define to use strict.
Must put: “use strict”;
Constants
Declare a constant(UNCHANGING) variable, uses ‘const’ instead of ‘let’
Can ‘const’ be reassigned ?
NO!
Uppercase constants
used for difficult to remember values that are known prior to execution
When do you use uppercase constants?
When variable values never change. Ex. color codes, birthdays etc.
Infinity
is a special value that is greater than any number.
- alert (1/0);
- alert(Infinity);
How many special numeric values are there ?
- Infinity, -Infinity and NaN
NaN
represent a computational error. It is a result of a incorrect or undefined math operation
Number Data Type
Cant present integer values larger than 2(53_1) superscript or less than -(253-1) for neg.
BigInt
represent integers of arbitrary length.appending n to the end of an integer: const bigInt = 1234567890123456789012345678901234567890n;
How many quotes are there in Javascript?
- Double “Hello”
- Single ‘Hello’
- Backticks
Hello
Backticks
“extended functionality” quotes. They allow us to embed variables and expressions into a string by wrapping them in ${…}
Ex:let name = “John”;
// embed a variable alert( `Hello, ${name}!` ); // Hello, John!
// embed an expression alert( `the result is ${1 + 2}` ); // the result is
Boolean
has only two values: true and false.
This type is commonly used to store yes/no values: true means “yes, correct”, and false means “no, incorrect”.
Null
null is not a “reference to a non-existing object” or a “null pointer” like in some other languages.
It’s just a special value which represents “nothing”, “empty” or “value unknown”.
Undefined
Undefined
“value is not assigned”.
If a variable is declared, but not assigned, then its value is undefined:
let age;
alert(age); // shows “undefined”
Object
Object
objects are used to store collections of data and more complex entities.
Symbol
used to create unique identifiers for objects.
Typeof operator
returns the type of the argument. It’s useful when we want to process values of different types differently or just want to do a quick check.
typeof undefined // “undefined”
typeof 0 // “number”
typeof 10n // “bigint”
typeof true // “boolean”
typeof “foo” // “string”
typeof Symbol(“id”) // “symbol”
How many data types are there in Javascript?
8
- number
- bigint
- string
- boolean
- null
- undefined
- object
- symbol