2018-10-12 15:37:13 -04:00
|
|
|
---
|
|
|
|
title: Escape Sequences in Strings
|
|
|
|
---
|
2019-07-24 00:59:27 -07:00
|
|
|
# Escape Sequences in Strings
|
2018-10-12 15:37:13 -04:00
|
|
|
|
|
|
|
|
2019-07-24 00:59:27 -07:00
|
|
|
---
|
|
|
|
## Solutions
|
|
|
|
|
|
|
|
<details><summary>Solution 1 (Click to Show/Hide)</summary>
|
|
|
|
|
2019-03-08 19:47:58 -03:00
|
|
|
```javascript
|
|
|
|
var myStr = "FirstLine\n\t\\SecondLine\nThirdLine";
|
|
|
|
```
|
2019-07-24 00:59:27 -07:00
|
|
|
</details>
|