CIW Related Exams
1D0-435 Exam
Which one of the following is a descriptive characteristic of an object, such as color, width or height?
__________ is used frequently in JavaScript to combine text strings, especially in conjunction with prompt() and alert().
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?