816 B

id, title, challengeType, videoUrl, forumTopicId
id title challengeType videoUrl forumTopicId
bad87fee1348bd9aedf08833 用占位符文本填充空白 0 https://scrimba.com/p/pVMPUv/cgR7Dc7 18178

--description--

Web 开发者通常用lorem ipsum text来做占位符,占位符就是占着位置的一些文字,没有实际意义。

为什么叫lorem ipsum text呢?是因为lorem ipsum是古罗马西塞罗谚语的前两个单词。

--instructions--

p元素的内容更换为:Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

--hints--

p元素的内容必须包含Monkey code

assert.isTrue(/Kitty(\s)+ipsum/gi.test($('p').text()));

--solutions--