Update task.md

This commit is contained in:
Alexander 2017-10-30 03:45:47 +03:00 committed by GitHub
parent ccc0e9327f
commit ab94743da8
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"
}
```