You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
510 B

[
{
"description": "variable human is declared and of type object",
"code": "equal(typeof human, 'object')"
},
{
"description": "property name from human is of type string",
"code": "equal(typeof human.name, 'string')"
},
{
"description": "property age from human is of type number",
"code": "equal(typeof human.age, 'number')"
},
{
"description": "property secureLuggage from human is of type boolean",
"code": "equal(typeof human.secureLuggage, 'boolean')"
}
]