name
and age
variables will be created and assigned the values of their respective values from the user
object. You can see how much cleaner this is.
You can extract as many or few values from the object as you want.
today
and tomorrow
the values of today
and tomorrow
from the HIGH_TEMPERATURES
object.
today
variable.
testString: assert(__helpers.removeJSComments(code).match(/(var|let|const)\s*{\s*(today[^}]*|[^,]*,\s*today)\s*}\s*=\s*HIGH_TEMPERATURES(;|\s+|\/\/)/g));
- text: You should use destructuring to create the tomorrow
variable.
testString: assert(__helpers.removeJSComments(code).match(/(var|let|const)\s*{\s*(tomorrow[^}]*|[^,]*,\s*tomorrow)\s*}\s*=\s*HIGH_TEMPERATURES(;|\s+|\/\/)/g));
- text: today
should be equal to 77
and tomorrow
should be equal to 80
.
testString: assert(today === 77 && tomorrow === 80);
```