Function without renaming

[skip ci]
This commit is contained in:
Carlos Saito
2017-04-02 18:45:54 +02:00
parent 95c65ec1cb
commit 4276462a07

View File

@@ -27,8 +27,8 @@ console.log(bob.printFriends());
**Out**
```javascript
var a = function a() {};
var a = function a(b) {
var a = function () {};
var a = function (b) {
return b;
};