This operator is used to calculate the remainder of a division problem.
This is the name for these symbols.
/* */
What is a block comment?
To introduce a function into your code.
What is declaring?
The preferred operator for checking is two values are different.
What is !== ?
These are the logical operators in JavaScript.
What is logical AND, logical OR, and logical NOT?
&& || !
A shorthand way of writing both an operation and an assignment.
What is an augmented assignment?
To combine two or more strings into a longer string.
What is concatenate?
What we call a value that has been passed into a function.
What is an argument?
This operator checks if the value and data type of two variables are the same.
This data type means nothing.
What is null?
This is the shortest way to subtract 1 from a number.
What is the decrement operator (or --)?
The technical name for a new line.
What is a break return?
These symbols surround the body of a function.
What are braces { } ?
The result of this code.
if (false != 0) {
console.log(true); }
else {
console.log(false); }
What is false?
The output of this code.
let myFeeling = !'sure' || !!'confused';
console.log(myFeeling);
What is true?
These are the unique values you could get if you did a long series of integer operations that all ended in "modulo 7."
What are 0, 1, 2, 3, 4, 5, 6?
The line of code you would write to determine the number of characters in this string.
let myString = "Happy Birthday!";
let myLength;
What is myLength = myString.length; ?
This part of the function sends something back when the function is invoked.
What is the return statement?
The most common type of "this" statement in JavaScript is the "if" statement.
The output of this statement.
console.log(true && 1 && null && 'good');
What is null?
This is the Fancy Nancy name for Integer Division.
What is Euclidean Division?
let myString = 'Here's my new toy!';
What is SyntaxError: Unexpected identifier?
The code you would write to introduce a function that would take a number and return that number multiplied by 5.
What is
function multFive(myNum) {
return myNum * 5;
}
(Answers may vary.)
There are this many comparison operators in JavaScript.
What is 8?
The output of this code.
console.log('loyal' || 'kind' && 'honest' || false);
What is loyal?