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
456 B

[
{
"description": "Test with a word all in lowercase",
"code": "let word = 'hello'\n\n// Your code\n\nequal(capitalized, 'Hello')"
},
{
"description": "Test with a word all in uppercase",
"code": "let word = 'PRESSURE'\n\n// Your code\n\nequal(capitalized, 'Pressure')"
},
{
"description": "Test with a word all in mixed case",
"code": "let word = 'SuPer-CoBra'\n\n// Your code\n\nequal(capitalized, 'Super-cobra')"
}
]