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.
 
 
 
 
 
 

10 lines
464 B

[
{
"description": "all 3 variable should be defined and have the right values",
"code": "let human = {\n name: 'Freddy',\n age: 27,\n secureLuggage: false,\n}\n\n// Your code\n\nequal({ name, age, secureLuggage }, human)"
},
{
"description": "value should also work for Jean-Pierre",
"code": "let human = {\n name: 'Jean-Pierre',\n age: 65,\n secureLuggage: true,\n}\n\n// Your code\n\nequal({ name, age, secureLuggage }, human)"
}
]