Menu
×
×
Correct!
Exercise:Use comments to describe the correct data type of the following variables:
var length = 16; // @(6)
var lastName = "Johnson"; // @(6)
var x = {
firstName: "John",
lastName: "Doe"
}; // @(6)
var length = 16; // Number
var lastName = "Johnson"; // String
var x = {
firstName: "John",
lastName: "Doe"
}; // Object
var length = 16; // NUMBER
var lastName = "Johnson"; // STRING
var x = {
firstName: "John",
lastName: "Doe"
}; // OBJECT
var length = 16; // number
var lastName = "Johnson"; // string
var x = {
firstName: "John",
lastName: "Doe"
}; // object
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 67 exercises.
Are you sure you want to continue?