Files

33 lines
850 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: Match Literal Strings
---
# Match Literal Strings
2018-10-12 15:37:13 -04:00
---
## Problem Explanation
2018-10-12 15:37:13 -04:00
This challenge is not any different from the previous; in this case though, you are learning that string literals are case-sensitive. That means, when you test to see if a string has a literal, it will search for the exact case (lower or upper) inside the string. You will learn how to find string literals regardless of their case, in an upcoming lesson.
In this challenge, you're finding Waldo...inside a string!
---
## Hints
### Hint 1
2018-10-12 15:37:13 -04:00
Change the line to have the correct string literal.
---
## Solutions
<details><summary>Solution 1 (Click to Show/Hide)</summary>
2018-10-12 15:37:13 -04:00
```javascript
let waldoIsHiding = "Somewhere Waldo is hiding in this text.";
let waldoRegex = /Waldo/; // Change this line
let result = waldoRegex.test(waldoIsHiding);
```
</details>