fix: replace inline code blocks (#41576)

This commit is contained in:
Randell Dawson
2021-03-25 15:07:48 -06:00
committed by GitHub
parent 8cc172d9e8
commit b5ed2619eb
25 changed files with 103 additions and 37 deletions

View File

@ -16,7 +16,9 @@ The `console.log()` method, which "prints" the output of what's within its paren
Here's an example to print the string `Hello world!` to the console:
`console.log('Hello world!');`
```js
console.log('Hello world!');
```
# --instructions--