fix function signature

This commit is contained in:
CookiesDeathCookies 2019-04-14 21:19:54 +03:00
parent 7e59d4b13e
commit d886f551a8

View file

@ -117,7 +117,7 @@ For the future, let's note that there are advanced test-runners, like [karma](ht
Let's make a simple implementation of `pow`, for tests to pass:
```js
function pow() {
function pow(x, n) {
return 8; // :) we cheat!
}
```