Merge pull request #57 from brajabi/patch-1

Fix undeclared variable
This commit is contained in:
Ilya Kantor 2017-06-30 13:56:02 +03:00 committed by GitHub
commit 186f25154f

View file

@ -409,7 +409,7 @@ For example:
```js run
*!*
a = (1+2, 3+4);
let a = (1+2, 3+4);
*/!*
alert( a ); // 7 (the result of 3+4)