Merge pull request #283 from usernamehw/patch-25

Update task.md
This commit is contained in:
Ilya Kantor 2017-11-01 08:57:51 +03:00 committed by GitHub
commit f1a90ac51a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,7 @@ work = spy(work);
work(1, 2); // 3
work(4, 5); // 9
for(let args of work.calls) {
for (let args of work.calls) {
alert( 'call:' + args.join() ); // "call:1,2", "call:4,5"
}
```