CIW 1D0-435 - CIW JavaScript Fundamentals exam
Once the constructor is defined, you need to create new instances of the object. This process is called instantiation.
Variables can store _______ data types in JavaScript.
_________ refers to the fact that some objects cannot be used or referenced without referring to the parent object.
The __________ is the building block of all custom objects.
JavaScript offer a predefined method for determining when you should use custom objects instead of arrays for your programs.
Consider the following Code:
<script>
var state = "";
var orderAmount = 50;
state = prompt("Which state do you live in?","");
if (state.toUpperCase() == "CA") {
alert("Your total owed is: " + (orderAmount * 1.0825));
} else {
alert("Your total owed is:" + orderAmount);
}
</script>
What will the alert method display if the user lives in Tennessee?
Which of the following operators is the logical "and", that evaluates to true when both operands are true?
Placing / in front of a line of text, within the Script tags will result in ______________
If a function is not a built in function, then it is a _________________ function.
var firstName="Sandy" would be the correct way to declare the variable firstName and assign it an initial value of "Sandy".
