Build README

This commit is contained in:
Angelos Chalaris
2017-12-14 12:50:15 +02:00
parent 6e1350a58f
commit 6abffae5c4
2 changed files with 24 additions and 11 deletions

View File

@ -1,11 +0,0 @@
### Joining an array-like object
The following example joins array-like object (arguments), by calling Function.prototype.call on Array.prototype.join.
```
function f(a, b, c) {
var s = Array.prototype.join.call(arguments);
console.log(s); // '1,a,true'
}
f(1, 'a', true);
```