Put value into quotes (#40172)

* Put value into quotes

It can be missunderstanding that "value" is a string!

* fix: remove quotes from inside code tags

Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com>

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com>
This commit is contained in:
Timo Köhler
2020-11-25 23:32:14 +01:00
committed by GitHub
parent 49f6875db5
commit 7ce8c58709

View File

@ -32,7 +32,7 @@ When there is no function body, and only a return value, arrow function syntax a
const myFunc = () => "value";
```
This code will still return <code>value</code> by default.
This code will still return the string <code>value</code> by default.
</section>
## Instructions