METHODS OF RUNNING JAVASCRIPT
- Using consoles on webpages
- using node.js
VARIABLES AND CONSTANTS
There are two methods of getting variables, both of which have similar syntax.
the two methods are:
CONSOLE.LOG
'console.log()' is used to display(print) information onto the user interface.
DATA TYPES
A list of all the data types in JavaScript are:
- strings
- number(integers and floats)
- big int: larger numbers
- Boolean: true or false
- undefined: a variable with unassigned data
- null: an empty variable, not the same as undefined
- symbol
- object: a collection of information similar to dictionaries or sets.
JAVASCRIPT OPERATORS