public/js/tests/words.json

14 lines
644 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[
{
"description": "Test with a classic introduction",
"code": "let sentence = 'Hello There !'\n\n// Your code\n\nequal(words, ['Hello', 'There', '!'])"
},
{
"description": "Test with a basic catchphrase",
"code": "let sentence = 'Live Laugh Love'\n\n// Your code\n\nequal(words, ['Live', 'Laugh', 'Love'])"
},
{
"description": "Test with a long quote",
"code": "let sentence = 'Being on the edge isnt as safe but the view is better'\n\n// Your code\n\nequal(words, [\n 'Being',\n 'on',\n 'the',\n 'edge',\n 'isnt',\n 'as',\n 'safe',\n 'but',\n 'the',\n 'view',\n 'is',\n 'better',\n])"
}
]