1
0
mirror of https://github.com/apachecn/eloquent-js-3e-zh.git synced 2025-05-23 20:02:20 +00:00

Merge pull request #1 from TopGrd/patch-1

Update 3.md
This commit is contained in:
Wizard Zhang 2018-05-08 18:30:02 +08:00 committed by GitHub
commit 81a123867b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
3.md
View File

@ -89,7 +89,7 @@ console.log(x + z);
```js
const halve = function(n) {
return n / 2;
}
let n = 10;
console.log(halve(100));
// → 50