+=
) operator.
someAdjective
and append it to myStr
using the +=
operator.
someAdjective
should be set to a string at least 3 characters long
testString: 'assert(typeof someAdjective !== "undefined" && someAdjective.length > 2, "someAdjective
should be set to a string at least 3 characters long");'
- text: Append someAdjective
to myStr
using the +=
operator
testString: 'assert(code.match(/myStr\s*\+=\s*someAdjective\s*/).length > 0, "Append someAdjective
to myStr
using the +=
operator");'
```