mirror of https://github.com/01-edu/public.git
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.
14 lines
395 B
14 lines
395 B
4 years ago
|
[
|
||
|
{
|
||
|
"description": "As a number, seven value is 7",
|
||
|
"code": "equal(Number(seven), 7)"
|
||
|
},
|
||
|
{
|
||
|
"description": "As a number, seventySeven value is 77",
|
||
|
"code": "equal(Number(seventySeven), 77)"
|
||
|
},
|
||
|
{
|
||
|
"description": "Somehow, the type of seven and seventySeven value must be strings",
|
||
|
"code": "equal(typeof seven, 'string')\nequal(typeof seventySeven, 'string')"
|
||
|
}
|
||
|
]
|