1. What are operators?
Found in JavaScript, operators are the tools used to combine and transform values. There are 3 basic types of operators
(a) UNARY OPERATORS: requires 1 input. Examples include - (’-’ for negation, ‘!’ for negation, ‘type of’)
(b) BINARY OPERATORS: requires 2 inputs. Examples include - (+, -, *, /, %, ==, !=, ===, !==, <, >, <=, >=, &&, ||)
© TERNARY OPERATORS: requires 3 inputs. Examples include - (?
2. What binary operators do you know?
Listed above
3. What logical operators do you know?
Logical operators I’m currently familiar with include ‘&&’ and ‘||’