## Notes
`Array.from()` is a static method that creates a shallow copy Array instance from an iterable or array-like.
```javascript
Array.from("foo") // ["f", "o", "o"]
Array.from([1, 2, 3], x => x * 2) // [2, 4, 6]
```
## References
- [Array.from - MDN](developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from)
- [[JavaScript Study MOC]]